4f9e7babeb
Closes #3521
10 lines
157 B
Rust
10 lines
157 B
Rust
fn main() {
|
|
let foo = 100;
|
|
|
|
enum Stuff {
|
|
Bar = foo //~ ERROR attempt to use a non-constant value in a constant
|
|
}
|
|
|
|
log(error, Bar);
|
|
}
|