about summary refs log tree commit diff
path: root/src/test/debug-info/struct-with-destructor.rs
diff options
context:
space:
mode:
authorMichael Woerister <michaelwoerister@gmail>2013-07-16 12:17:55 +0200
committerMichael Woerister <michaelwoerister@gmail>2013-07-19 07:58:28 +0200
commitb2aeb4b04bccf915444fa2a49ee3f3c33dec7097 (patch)
tree9cdea2fb0e594e8d8e3f9a8f6deaf93f019e316f /src/test/debug-info/struct-with-destructor.rs
parenteed2d0e1f2f4c6743b33efa06d5028fcc33db3b1 (diff)
downloadrust-b2aeb4b04bccf915444fa2a49ee3f3c33dec7097.tar.gz
rust-b2aeb4b04bccf915444fa2a49ee3f3c33dec7097.zip
debuginfo: Cleaned up style issues for pull request.
Diffstat (limited to 'src/test/debug-info/struct-with-destructor.rs')
-rw-r--r--src/test/debug-info/struct-with-destructor.rs10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/test/debug-info/struct-with-destructor.rs b/src/test/debug-info/struct-with-destructor.rs
index 87e61ebe373..ba28153ebaf 100644
--- a/src/test/debug-info/struct-with-destructor.rs
+++ b/src/test/debug-info/struct-with-destructor.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
@@ -29,13 +31,13 @@
 
 
 struct NoDestructor {
-    x : i32,
-    y : i64
+    x: i32,
+    y: i64
 }
 
 struct WithDestructor {
-    x : i32,
-    y : i64
+    x: i32,
+    y: i64
 }
 
 impl Drop for WithDestructor {