rust/tests/ui/parser/issues/issue-118531-ice.rs
2023-12-02 23:47:39 +08:00

11 lines
292 B
Rust

fn bar() -> String {
#[cfg(feature = )]
[1, 2, 3].iter().map().collect::<String>() //~ ERROR expected `;`, found `#`
#[attr] //~ ERROR attributes on expressions are experimental [E0658]
//~^ ERROR cannot find attribute `attr` in this scope
String::new()
}
fn main() { }