blob: 6a86e71173824d8b9a8e50e8b3572c38b2c06fdc [file] [log] [blame] [edit]
//@ edition:2015
mod foo {
pub fn r#let() {}
pub fn break() {} //~ ERROR expected identifier, found keyword `break`
}
fn main() {
foo::let(); //~ ERROR expected identifier, found keyword `let`
r#break(); //~ ERROR cannot find function `r#break` in this scope
}