7237268b70
Also some work towards #3521 Closes #2428
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);
|
|
}
|