about summary refs log tree commit diff
path: root/src/test/run-pass/deriving-cmp-generic-tuple-struct.rs
diff options
context:
space:
mode:
authorJohn Clements <clements@racket-lang.org>2014-06-25 17:08:08 -0700
committerJohn Clements <clements@racket-lang.org>2014-06-25 17:08:47 -0700
commitd8d48e4aae6a0766112970095d95bd0cac4bd79c (patch)
tree7f5f52db1d5567c2978e238e73f0ea73ff92389b /src/test/run-pass/deriving-cmp-generic-tuple-struct.rs
parenteead9e61905a7770fba06bf6ade142b8b8bc23f6 (diff)
downloadrust-d8d48e4aae6a0766112970095d95bd0cac4bd79c.tar.gz
rust-d8d48e4aae6a0766112970095d95bd0cac4bd79c.zip
work around 15189 in test cases
Diffstat (limited to 'src/test/run-pass/deriving-cmp-generic-tuple-struct.rs')
-rw-r--r--src/test/run-pass/deriving-cmp-generic-tuple-struct.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/run-pass/deriving-cmp-generic-tuple-struct.rs b/src/test/run-pass/deriving-cmp-generic-tuple-struct.rs
index 8ab529996e5..c07f124a08d 100644
--- a/src/test/run-pass/deriving-cmp-generic-tuple-struct.rs
+++ b/src/test/run-pass/deriving-cmp-generic-tuple-struct.rs
@@ -8,6 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+// ignore-pretty FIXME #15189
+
 #[deriving(PartialEq, Eq, PartialOrd, Ord)]
 struct TS<T>(T,T);