summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-negative-inherent.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-negative-inherent.rs')
-rw-r--r--src/test/ui/coherence/coherence-negative-inherent.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/test/ui/coherence/coherence-negative-inherent.rs b/src/test/ui/coherence/coherence-negative-inherent.rs
new file mode 100644
index 000000000..a9e1acc80
--- /dev/null
+++ b/src/test/ui/coherence/coherence-negative-inherent.rs
@@ -0,0 +1,22 @@
+// check-pass
+
+#![feature(negative_impls)]
+#![feature(rustc_attrs)]
+#![feature(with_negative_coherence)]
+
+#[rustc_strict_coherence]
+trait Foo {}
+
+impl !Foo for u32 {}
+
+struct MyStruct<T>(T);
+
+impl<T: Foo> MyStruct<T> {
+ fn method(&self) {}
+}
+
+impl MyStruct<u32> {
+ fn method(&self) {}
+}
+
+fn main() {}