]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/default-unmatched.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / parser / default-unmatched.rs
1 mod foo {
2     default!(); // OK.
3     default do
4     //~^ ERROR `default` is not followed by an item
5     //~| ERROR expected item, found reserved keyword `do`
6 }