Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
traits
/
as-struct-constructor.rs
blob: 13ebf9d8d6680696af42a528247e67e321153870 [
file
]
trait
TraitNotAStruct
{}
fn
main
()
{
TraitNotAStruct
{
value
:
0
};
//~^ ERROR expected struct, variant or union type, found trait `TraitNotAStruct`
}