]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/generic_const_exprs/issue-74713.rs
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[rust.git] / tests / ui / const-generics / generic_const_exprs / issue-74713.rs
1 fn bug<'a>()
2 where
3     [(); { //~ ERROR mismatched types
4         let _: &'a (); //~ ERROR a non-static lifetime is not allowed in a `const`
5     }]:
6 {}
7
8 fn main() {}