1 2 3 4 5 6 7 8 9 10
// error-pattern: attempted dynamic environment-capture fn foo() { let int x; fn bar() { log x; } } fn main() { foo(); }