rust/tests/ui/lowering/issue-96847.rs
2024-02-16 20:02:50 +00:00

15 lines
291 B
Rust

//@ run-pass
// Test that this doesn't abort during AST lowering. In #96847 it did abort
// because the attribute was being lowered twice.
#![feature(stmt_expr_attributes)]
#![feature(lang_items)]
fn main() {
for _ in [1,2,3] {
#![lang="foo"]
println!("foo");
}
}