]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/keywords-followed-by-double-colon.rs
Rollup merge of #106715 - BoxyUwU:new_solver_triagebot, r=lcnr
[rust.git] / tests / ui / parser / keywords-followed-by-double-colon.rs
1 fn main() {
2     struct::foo();
3     //~^ ERROR expected identifier
4 }
5 fn bar() {
6     mut::baz();
7     //~^ ERROR expected expression, found keyword `mut`
8 }