2019-11-20 16:50:13 -06:00
|
|
|
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`
|
2019-12-03 21:01:42 -06:00
|
|
|
r#break(); //~ ERROR cannot find function `r#break` in this scope
|
2019-11-20 16:50:13 -06:00
|
|
|
}
|