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