7 lines
165 B
Rust
7 lines
165 B
Rust
fn something(f: pure fn()) { f(); }
|
|
|
|
fn main() {
|
|
let mut x = ~[];
|
|
something(|| x.push(0) ); //~ ERROR access to impure function prohibited in pure context
|
|
}
|