rust/src/test/compile-fail/issue-3521.rs

10 lines
157 B
Rust
Raw Normal View History

2012-10-15 14:00:32 -05:00
fn main() {
let foo = 100;
enum Stuff {
Bar = foo //~ ERROR attempt to use a non-constant value in a constant
2012-10-15 14:00:32 -05:00
}
log(error, Bar);
}