rust/tests/ui/parser/virtual-structs.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
218 B
Rust
Raw Normal View History

// Test diagnostics for the removed struct inheritance feature.
virtual struct SuperStruct {
//~^ ERROR expected item, found reserved keyword `virtual`
f1: isize,
}
struct Struct : SuperStruct;
pub fn main() {}