5 lines
131 B
Rust
5 lines
131 B
Rust
//@ compile-flags: --edition 2018
|
|
|
|
fn main() {
|
|
let try = "foo"; //~ error: expected identifier, found reserved keyword `try`
|
|
}
|