6 lines
93 B
Rust
6 lines
93 B
Rust
struct X {}
|
|
fn main() {
|
|
vec![X]; //…
|
|
//~^ ERROR expected value, found struct `X`
|
|
}
|