diff options
| author | Michael Woerister <michaelwoerister@gmail> | 2013-07-16 12:17:55 +0200 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@gmail> | 2013-07-19 07:58:28 +0200 |
| commit | b2aeb4b04bccf915444fa2a49ee3f3c33dec7097 (patch) | |
| tree | 9cdea2fb0e594e8d8e3f9a8f6deaf93f019e316f /src/test/debug-info/nil-enum.rs | |
| parent | eed2d0e1f2f4c6743b33efa06d5028fcc33db3b1 (diff) | |
| download | rust-b2aeb4b04bccf915444fa2a49ee3f3c33dec7097.tar.gz rust-b2aeb4b04bccf915444fa2a49ee3f3c33dec7097.zip | |
debuginfo: Cleaned up style issues for pull request.
Diffstat (limited to 'src/test/debug-info/nil-enum.rs')
| -rw-r--r-- | src/test/debug-info/nil-enum.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/debug-info/nil-enum.rs b/src/test/debug-info/nil-enum.rs index 09f41ee9f42..d3afd4b11f9 100644 --- a/src/test/debug-info/nil-enum.rs +++ b/src/test/debug-info/nil-enum.rs @@ -8,6 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// xfail-win32 Broken because of LLVM bug: http://llvm.org/bugs/show_bug.cgi?id=16249 + // compile-flags:-Z extra-debug-info // debugger:break zzz // debugger:run @@ -28,8 +30,8 @@ enum AnotherNilEnum {} // 2. That gdb prints the string "{<No data fields>}" for empty structs (which may change some time) fn main() { unsafe { - let first : ANilEnum = std::cast::transmute(()); - let second : AnotherNilEnum = std::cast::transmute(()); + let first: ANilEnum = std::cast::transmute(()); + let second: AnotherNilEnum = std::cast::transmute(()); zzz(); } |
