mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
218 B
Rust
11 lines
218 B
Rust
// 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() {}
|