rust/tests/ui/suggestions/constrain-suggest-ice.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
151 B
Rust
Raw Normal View History

struct Bug<S>{
2022-03-07 12:55:58 -06:00
A: [(); {
let x: [u8; Self::W] = [0; Self::W];
F
2022-03-07 12:55:58 -06:00
}
}
2022-03-07 12:55:58 -06:00
//~^ ERROR mismatched closing delimiter: `}`
fn main() {}