summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-static-bound.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/regions-static-bound.rs')
-rw-r--r--src/test/ui/regions/regions-static-bound.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/regions/regions-static-bound.rs b/src/test/ui/regions/regions-static-bound.rs
deleted file mode 100644
index 4d2455470..000000000
--- a/src/test/ui/regions/regions-static-bound.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-fn static_id<'a,'b>(t: &'a ()) -> &'static ()
- where 'a: 'static { t }
-//~^ WARN unnecessary lifetime parameter `'a`
-
-fn static_id_indirect<'a,'b>(t: &'a ()) -> &'static ()
- where 'a: 'b, 'b: 'static { t }
-//~^ WARN unnecessary lifetime parameter `'b`
-
-fn static_id_wrong_way<'a>(t: &'a ()) -> &'static () where 'static: 'a {
- t
- //~^ ERROR lifetime may not live long enough
-}
-
-fn error(u: &(), v: &()) {
- static_id(&u);
- //~^ ERROR borrowed data escapes outside of function [E0521]
- static_id_indirect(&v);
- //~^ ERROR borrowed data escapes outside of function [E0521]
-}
-
-fn main() {}