rust/src/test/ui/empty/empty-struct-braces-expr.stderr

71 lines
2.5 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0423]: expected value, found struct `Empty1`
2018-12-25 15:56:47 +00:00
--> $DIR/empty-struct-braces-expr.rs:15:14
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let e1 = Empty1;
2018-08-08 12:28:26 +00:00
| ^^^^^^
| |
| did you mean `Empty1 { /* fields */ }`?
| help: a unit struct with a similar name exists: `XEmpty2`
2018-08-08 12:28:26 +00:00
error[E0423]: expected function, found struct `Empty1`
2018-12-25 15:56:47 +00:00
--> $DIR/empty-struct-braces-expr.rs:16:14
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let e1 = Empty1();
2018-08-08 12:28:26 +00:00
| ^^^^^^
| |
| did you mean `Empty1 { /* fields */ }`?
| help: a unit struct with a similar name exists: `XEmpty2`
2018-08-08 12:28:26 +00:00
error[E0423]: expected value, found struct variant `E::Empty3`
2018-12-25 15:56:47 +00:00
--> $DIR/empty-struct-braces-expr.rs:17:14
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let e3 = E::Empty3;
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^ did you mean `E::Empty3 { /* fields */ }`?
error[E0423]: expected function, found struct variant `E::Empty3`
2018-12-25 15:56:47 +00:00
--> $DIR/empty-struct-braces-expr.rs:18:14
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let e3 = E::Empty3();
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^ did you mean `E::Empty3 { /* fields */ }`?
error[E0423]: expected value, found struct `XEmpty1`
2018-12-25 15:56:47 +00:00
--> $DIR/empty-struct-braces-expr.rs:20:15
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let xe1 = XEmpty1;
2018-08-08 12:28:26 +00:00
| ^^^^^^^
| |
| did you mean `XEmpty1 { /* fields */ }`?
| help: a unit struct with a similar name exists: `XEmpty2`
2018-08-08 12:28:26 +00:00
error[E0423]: expected function, found struct `XEmpty1`
2018-12-25 15:56:47 +00:00
--> $DIR/empty-struct-braces-expr.rs:21:15
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let xe1 = XEmpty1();
2018-08-08 12:28:26 +00:00
| ^^^^^^^
| |
| did you mean `XEmpty1 { /* fields */ }`?
| help: a unit struct with a similar name exists: `XEmpty2`
2018-08-08 12:28:26 +00:00
error[E0599]: no variant named `Empty3` found for type `empty_struct::XE` in the current scope
2018-12-07 18:15:36 +00:00
--> $DIR/empty-struct-braces-expr.rs:22:19
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let xe3 = XE::Empty3;
2019-03-10 23:20:15 +00:00
| ^^^^^^
| |
| variant not found in `empty_struct::XE`
| help: did you mean: `XEmpty3`
2018-08-08 12:28:26 +00:00
error[E0599]: no variant named `Empty3` found for type `empty_struct::XE` in the current scope
2018-12-07 18:15:36 +00:00
--> $DIR/empty-struct-braces-expr.rs:23:19
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let xe3 = XE::Empty3();
2019-03-10 23:20:15 +00:00
| ^^^^^^
| |
| variant not found in `empty_struct::XE`
| help: did you mean: `XEmpty3`
2018-08-08 12:28:26 +00:00
error: aborting due to 8 previous errors
Some errors occurred: E0423, E0599.
For more information about an error, try `rustc --explain E0423`.