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, 0 insertions, 9 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
deleted file mode 100644
index d466dcac1..000000000
--- a/src/test/ui/coherence/coherence-no-direct-lifetime-dispatch.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// 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() {}