about summary refs log tree commit diff
path: root/src/test/ui/methods/method-call-lifetime-args-subst-index.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/methods/method-call-lifetime-args-subst-index.rs')
-rw-r--r--src/test/ui/methods/method-call-lifetime-args-subst-index.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/methods/method-call-lifetime-args-subst-index.rs b/src/test/ui/methods/method-call-lifetime-args-subst-index.rs
deleted file mode 100644
index 8df58a3486e..00000000000
--- a/src/test/ui/methods/method-call-lifetime-args-subst-index.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// build-pass (FIXME(62277): could be check-pass?)
-#![allow(unused)]
-
-struct S;
-
-impl S {
-    fn early_and_type<'a, T>(self) -> &'a T { loop {} }
-}
-
-fn test() {
-    S.early_and_type::<u16>();
-}
-
-
-fn main() {}