summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/user-annotations/issue-55219.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/user-annotations/issue-55219.rs')
-rw-r--r--src/test/ui/nll/user-annotations/issue-55219.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/nll/user-annotations/issue-55219.rs b/src/test/ui/nll/user-annotations/issue-55219.rs
deleted file mode 100644
index 147413663..000000000
--- a/src/test/ui/nll/user-annotations/issue-55219.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// Regression test for #55219:
-//
-// The `Self::HASH_LEN` here expands to a "self-type" where `T` is not
-// known. This unbound inference variable was causing an ICE.
-//
-// check-pass
-
-pub struct Foo<T>(T);
-
-impl<T> Foo<T> {
- const HASH_LEN: usize = 20;
-
- fn stuff() {
- let _ = Self::HASH_LEN;
- }
-}
-
-fn main() { }