]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/default-unmatched.rs
Rollup merge of #106618 - jmillikin:os-net-rustdoc-wasm32, r=JohnTitor
[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 }