summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/region-bound-same-bounds-in-trait-and-impl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/region-bound-same-bounds-in-trait-and-impl.rs')
-rw-r--r--src/test/ui/regions/region-bound-same-bounds-in-trait-and-impl.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/regions/region-bound-same-bounds-in-trait-and-impl.rs b/src/test/ui/regions/region-bound-same-bounds-in-trait-and-impl.rs
deleted file mode 100644
index 68056370c..000000000
--- a/src/test/ui/regions/region-bound-same-bounds-in-trait-and-impl.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// Test related to #22779, but where the `'a:'b` relation
-// appears in the trait too. No error here.
-
-// check-pass
-
-trait Tr<'a, T> {
- fn renew<'b: 'a>(self) -> &'b mut [T] where 'a: 'b;
-}
-
-impl<'a, T> Tr<'a, T> for &'a mut [T] {
- fn renew<'b: 'a>(self) -> &'b mut [T] where 'a: 'b {
- &mut self[..]
- }
-}
-
-
-fn main() { }