summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lifetimes/nested.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lifetimes/nested.rs')
-rw-r--r--src/test/ui/lifetimes/nested.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/test/ui/lifetimes/nested.rs b/src/test/ui/lifetimes/nested.rs
deleted file mode 100644
index f3f1f2016..000000000
--- a/src/test/ui/lifetimes/nested.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-// check-pass
-
-fn method<'a>(_i: &'a i32) {
- fn inner<'a>(_j: &'a f32) {}
-}
-
-fn main() {}