mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 06:22:00 +00:00
13 lines
156 B
Rust
13 lines
156 B
Rust
|
// -*- rust -*-
|
||
|
|
||
|
// error-pattern: attempted dynamic environment-capture
|
||
|
|
||
|
fn main() {
|
||
|
|
||
|
fn foo() -> int {
|
||
|
ret bar;
|
||
|
}
|
||
|
|
||
|
let int bar = 5;
|
||
|
}
|