summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfcs/rfc1623-3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rfcs/rfc1623-3.rs')
-rw-r--r--src/test/ui/rfcs/rfc1623-3.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/rfcs/rfc1623-3.rs b/src/test/ui/rfcs/rfc1623-3.rs
deleted file mode 100644
index 26fa6fdb5..000000000
--- a/src/test/ui/rfcs/rfc1623-3.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-#![allow(dead_code)]
-
-fn non_elidable<'a, 'b>(a: &'a u8, b: &'b u8) -> &'a u8 {
- a
-}
-
-// the boundaries of elision
-static NON_ELIDABLE_FN: &fn(&u8, &u8) -> &u8 =
-//~^ ERROR missing lifetime specifier [E0106]
- &(non_elidable as fn(&u8, &u8) -> &u8);
- //~^ ERROR missing lifetime specifier [E0106]
- //~| ERROR non-primitive cast
-
-fn main() {}