mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 16:31:32 +00:00
7 lines
158 B
Rust
7 lines
158 B
Rust
trait TraitNotAStruct {}
|
|
|
|
fn main() {
|
|
TraitNotAStruct{ value: 0 };
|
|
//~^ ERROR expected struct, variant or union type, found trait `TraitNotAStruct`
|
|
}
|