e5e2811bc6
Changed a few error patterns to match rustc's errors where it seemed reasonable.
10 lines
132 B
Rust
10 lines
132 B
Rust
// error-pattern: attempted dynamic environment-capture
|
|
fn foo() {
|
|
let int x;
|
|
fn bar() {
|
|
log x;
|
|
}
|
|
}
|
|
fn main() {
|
|
foo();
|
|
} |