about summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/ice-unsized-struct-const-eval-123154.rs
blob: 24a2cd19b187ff395a0e0ffa7bf9a99e535b95aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Regression test for #123154

struct AA {
    pub data: [&usize]
    //~^ ERROR missing lifetime specifier
}

impl AA {
    const fn new() -> Self { }
    //~^ ERROR mismatched types
}

static ST: AA = AA::new();

fn main() {}