mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 21:32:03 +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() {}
|