summaryrefslogtreecommitdiff
path: root/tests/ui/const-generics/generic_const_exprs/issue-74713.rs
blob: 0bcb997d96cde5b79f04f5df117a2add95a9a23d (plain)
1
2
3
4
5
6
7
8
fn bug<'a>()
where
    [(); { //~ ERROR mismatched types
        let _: &'a (); //~ ERROR a non-static lifetime is not allowed in a `const`
    }]:
{}

fn main() {}