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

16 lines
395 B
Rust

fn bar() -> String {
#[cfg]
[1, 2, 3].iter() //~ ERROR expected `;`, found `#`
#[feature]
attr::fn bar() -> String { //~ ERROR expected identifier, found keyword `fn`
//~^ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `->`
//~| ERROR expected `;`, found `bar`
#[attr]
[1, 2, 3].iter().map().collect::<String>()
#[attr]
}()
}
fn main() { }