Files
rust/src/test/ui/parser/default-unmatched.rs

7 lines
157 B
Rust
Raw Normal View History

mod foo {
default!(); // OK.
default do
2020-02-23 04:49:26 +01:00
//~^ ERROR `default` not followed by an item
//~| ERROR expected item, found reserved keyword `do`
}