2015-04-17 22:12:20 -07:00
|
|
|
trait TraitNotAStruct {}
|
2014-08-29 21:11:34 -07:00
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
TraitNotAStruct{ value: 0 };
|
2016-09-15 00:51:46 +03:00
|
|
|
//~^ ERROR expected struct, variant or union type, found trait `TraitNotAStruct`
|
2014-08-29 21:11:34 -07:00
|
|
|
}
|