mirror of https://github.com/rust-lang/rust
17 lines
335 B
Rust
17 lines
335 B
Rust
fn ,comma() {
|
|
//~^ ERROR expected identifier, found `,`
|
|
struct Foo {
|
|
x: i32,,
|
|
//~^ ERROR expected identifier, found `,`
|
|
y: u32,
|
|
}
|
|
}
|
|
|
|
fn break() {
|
|
//~^ ERROR expected identifier, found keyword `break`
|
|
let continue = 5;
|
|
//~^ ERROR expected identifier, found keyword `continue`
|
|
}
|
|
|
|
fn main() {}
|