]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/as-struct-constructor.rs
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / traits / as-struct-constructor.rs
1 trait TraitNotAStruct {}
2
3 fn main() {
4     TraitNotAStruct{ value: 0 };
5     //~^ ERROR expected struct, variant or union type, found trait `TraitNotAStruct`
6 }