about summary refs log tree commit diff
path: root/src/test/ui/impl-header-lifetime-elision/inherent-impl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/impl-header-lifetime-elision/inherent-impl.rs')
-rw-r--r--src/test/ui/impl-header-lifetime-elision/inherent-impl.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/impl-header-lifetime-elision/inherent-impl.rs b/src/test/ui/impl-header-lifetime-elision/inherent-impl.rs
deleted file mode 100644
index 9d7b2f2d088..00000000000
--- a/src/test/ui/impl-header-lifetime-elision/inherent-impl.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// build-pass (FIXME(62277): could be check-pass?)
-
-struct Foo<'a>(&'a u8);
-
-impl Foo<'_> {
-    fn x() {}
-}
-
-fn main() {}