summaryrefslogtreecommitdiffstats
path: root/src/test/ui/compare-method/region-extra.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/compare-method/region-extra.rs')
-rw-r--r--src/test/ui/compare-method/region-extra.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/compare-method/region-extra.rs b/src/test/ui/compare-method/region-extra.rs
deleted file mode 100644
index 1070cb845..000000000
--- a/src/test/ui/compare-method/region-extra.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// Test that you cannot add an extra where clause in the impl relating
-// two regions.
-
-trait Master<'a, 'b> {
- fn foo();
-}
-
-impl<'a, 'b> Master<'a, 'b> for () {
- fn foo() where 'a: 'b { } //~ ERROR impl has stricter
-}
-
-fn main() {
- println!("Hello, world!");
-}