summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-addr-of-arg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/regions-addr-of-arg.rs')
-rw-r--r--src/test/ui/regions/regions-addr-of-arg.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/regions/regions-addr-of-arg.rs b/src/test/ui/regions/regions-addr-of-arg.rs
deleted file mode 100644
index 1805141c4..000000000
--- a/src/test/ui/regions/regions-addr-of-arg.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// Check that taking the address of an argument yields a lifetime
-// bounded by the current function call.
-
-fn foo(a: isize) {
- let _p: &'static isize = &a; //~ ERROR `a` does not live long enough
-}
-
-fn bar(a: isize) {
- let _q: &isize = &a;
-}
-
-fn zed<'a>(a: isize) -> &'a isize {
- &a //~ ERROR cannot return reference to function parameter `a`
-}
-
-fn main() {
-}