summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/user-annotations/issue-55219.rs
blob: 147413663897d9cd4663f9f85a5b37cd8f985106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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() { }