summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/bound-lifetime-in-return-only.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/associated-types/bound-lifetime-in-return-only.rs')
-rw-r--r--src/test/ui/associated-types/bound-lifetime-in-return-only.rs49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/test/ui/associated-types/bound-lifetime-in-return-only.rs b/src/test/ui/associated-types/bound-lifetime-in-return-only.rs
deleted file mode 100644
index a60ccb6c4..000000000
--- a/src/test/ui/associated-types/bound-lifetime-in-return-only.rs
+++ /dev/null
@@ -1,49 +0,0 @@
-// revisions: sig local structure ok elision
-
-#![allow(dead_code)]
-#![feature(rustc_attrs)]
-#![feature(unboxed_closures)]
-
-trait Foo {
- type Item;
-}
-
-#[cfg(sig)]
-fn sig1(_: for<'a> fn() -> &'a i32) {
- //[sig]~^ ERROR return type references lifetime `'a`
-}
-
-#[cfg(sig)]
-fn sig2(_: for<'a, 'b> fn(&'b i32) -> &'a i32) {
- //[sig]~^ ERROR return type references lifetime `'a`
-}
-
-#[cfg(local)]
-fn local1() {
- let _: for<'a> fn() -> &'a i32 = loop { };
- //[local]~^ ERROR return type references lifetime `'a`
-}
-
-#[cfg(structure)]
-struct Struct1 {
- x: for<'a> fn() -> &'a i32
- //[structure]~^ ERROR return type references lifetime `'a`
-}
-
-#[cfg(elision)]
-fn elision(_: fn() -> &i32) {
- //[elision]~^ ERROR E0106
-}
-
-struct Parameterized<'a> { x: &'a str }
-
-#[cfg(ok)]
-fn ok1(_: &dyn for<'a> Fn(&Parameterized<'a>) -> &'a i32) {
-}
-
-#[cfg(ok)]
-fn ok2(_: &dyn for<'a,'b> Fn<(&'b Parameterized<'a>,), Output=&'a i32>) {
-}
-
-#[rustc_error]
-fn main() { } //[ok]~ ERROR fatal error triggered by #[rustc_error]