7 lines
116 B
Rust
7 lines
116 B
Rust
|
|
fn main() {
|
||
|
|
let _ = const {
|
||
|
|
//~^ ERROR expected expression, found keyword `const`
|
||
|
|
true
|
||
|
|
};
|
||
|
|
}
|