9 lines
165 B
Rust
9 lines
165 B
Rust
|
fn bug<'a>()
|
||
|
where
|
||
|
[(); { //~ ERROR mismatched types
|
||
|
let _: &'a (); //~ ERROR a non-static lifetime is not allowed in a `const`
|
||
|
}]:
|
||
|
{}
|
||
|
|
||
|
fn main() {}
|