Sign in
rust
/
rust
/
4a2f9eb8636d4e8403bb19dcb0117159d9482be2
/
.
/
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`
}