]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/issue-104392.rs
Merge commit 'd822110d3b5625b9dc80ccc442e06fc3cc851d76' into clippyup
[rust.git] / src / test / ui / lint / issue-104392.rs
1 fn main() {
2     { unsafe 92 } //~ ERROR expected `{`, found `92`
3 }
4
5 fn foo() {
6     { mod 92 } //~ ERROR expected identifier, found `92`
7 }
8
9 fn bar() {
10     { trait 92 } //~ ERROR expected identifier, found `92`
11 }