rust/tests/ui/error-codes/E0013.rs

5 lines
104 B
Rust
Raw Normal View History

static X: i32 = 42;
const Y: i32 = X; //~ ERROR constants cannot refer to statics [E0013]
fn main() {}