6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
8 lines
164 B
Rust
8 lines
164 B
Rust
fn force(f: fn()) { f(); }
|
|
fn main() {
|
|
let x: int;
|
|
force(fn&() {
|
|
log(debug, x); //~ ERROR capture of possibly uninitialized variable: `x`
|
|
});
|
|
}
|