6 lines
130 B
Rust
6 lines
130 B
Rust
fn f(x:isize) {
|
|
static child: isize = x + 1;
|
|
//~^ ERROR attempt to use a non-constant value in a constant
|
|
}
|
|
|
|
fn main() {}
|