blob: d5608edb46f0493fb58c8036a43676308086553a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
fn main() {
{ unsafe 92 } //~ ERROR expected `{`, found `92`
}
fn foo() {
{ mod 92 } //~ ERROR expected identifier, found `92`
}
fn bar() {
{ trait 92 } //~ ERROR expected identifier, found `92`
}
|