2010-06-23 23:03:09 -05:00
|
|
|
// error-pattern: attempted dynamic environment-capture
|
|
|
|
fn foo() {
|
2011-07-27 07:19:39 -05:00
|
|
|
let x: int;
|
2011-12-22 16:42:52 -06:00
|
|
|
fn bar() { log_full(core::debug, x); }
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
2011-08-19 17:16:48 -05:00
|
|
|
fn main() { foo(); }
|