rust/src/test/compile-fail/restricted-keyword1.rs

8 lines
104 B
Rust

// error-pattern:found `let` in restricted position
fn main() {
alt true {
{let} { }
}
}