summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-no-direct-lifetime-dispatch.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-no-direct-lifetime-dispatch.rs')
-rw-r--r--src/test/ui/coherence/coherence-no-direct-lifetime-dispatch.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/coherence/coherence-no-direct-lifetime-dispatch.rs b/src/test/ui/coherence/coherence-no-direct-lifetime-dispatch.rs
new file mode 100644
index 000000000..d466dcac1
--- /dev/null
+++ b/src/test/ui/coherence/coherence-no-direct-lifetime-dispatch.rs
@@ -0,0 +1,9 @@
+// Test that you cannot *directly* dispatch on lifetime requirements
+
+trait MyTrait { fn foo() {} }
+
+impl<T> MyTrait for T {}
+impl<T: 'static> MyTrait for T {}
+//~^ ERROR E0119
+
+fn main() {}