about summary refs log tree commit diff
path: root/src/test/ui/parser/virtual-structs.rs
blob: 522df6b5e6610e6cd12be15007d14801c3c68b54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// compile-flags: -Z parse-only

// 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() {}