mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
7 lines
139 B
Rust
7 lines
139 B
Rust
|
fn main() {
|
||
|
|bool: [u8; break 'L]| 0;
|
||
|
//~^ ERROR [E0426]
|
||
|
//~| ERROR [E0268]
|
||
|
Vec::<[u8; break]>::new(); //~ ERROR [E0268]
|
||
|
}
|