8 lines
143 B
Rust
8 lines
143 B
Rust
|
fn main() {
|
||
|
let foo = 100;
|
||
|
|
||
|
const y: int = foo + 1; //~ ERROR: attempt to use a non-constant value in a constant
|
||
|
|
||
|
log(error, y);
|
||
|
}
|