2020-08-22 03:32:07 +00:00
|
|
|
error[E0573]: expected type, found variant `CompileFlag::A`
|
2020-08-31 17:12:53 +00:00
|
|
|
--> $DIR/invalid-enum.rs:21:12
|
2020-08-22 03:32:07 +00:00
|
|
|
|
|
2020-08-31 17:12:53 +00:00
|
|
|
LL | test_1::<CompileFlag::A>();
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| not a type
|
|
|
|
| help: try using the variant's enum: `CompileFlag`
|
|
|
|
|
|
|
|
error[E0573]: expected type, found variant `CompileFlag::A`
|
2020-11-13 19:23:37 +00:00
|
|
|
--> $DIR/invalid-enum.rs:25:15
|
2020-08-31 17:12:53 +00:00
|
|
|
|
|
|
|
|
LL | test_2::<_, CompileFlag::A>(0);
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| not a type
|
|
|
|
| help: try using the variant's enum: `CompileFlag`
|
|
|
|
|
|
|
|
error[E0573]: expected type, found variant `CompileFlag::A`
|
2020-11-13 19:23:37 +00:00
|
|
|
--> $DIR/invalid-enum.rs:29:18
|
2020-08-31 17:12:53 +00:00
|
|
|
|
|
|
|
|
LL | let _: Example<CompileFlag::A, _> = Example { x: 0 };
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| not a type
|
|
|
|
| help: try using the variant's enum: `CompileFlag`
|
|
|
|
|
2021-02-14 04:35:18 +00:00
|
|
|
error[E0747]: unresolved item provided when a constant was expected
|
2020-11-13 19:23:37 +00:00
|
|
|
--> $DIR/invalid-enum.rs:29:18
|
2020-08-31 17:12:53 +00:00
|
|
|
|
|
|
|
|
LL | let _: Example<CompileFlag::A, _> = Example { x: 0 };
|
2020-11-13 19:23:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2021-02-14 04:35:18 +00:00
|
|
|
|
|
|
|
|
help: if this generic argument was intended as a const parameter, surround it with braces
|
|
|
|
|
|
|
|
|
LL | let _: Example<{ CompileFlag::A }, _> = Example { x: 0 };
|
2021-06-22 02:07:19 +00:00
|
|
|
| + +
|
2020-08-31 17:12:53 +00:00
|
|
|
|
2020-11-13 19:23:37 +00:00
|
|
|
error[E0747]: type provided when a constant was expected
|
|
|
|
--> $DIR/invalid-enum.rs:33:18
|
2020-08-31 17:12:53 +00:00
|
|
|
|
|
|
|
|
LL | let _: Example<Example::ASSOC_FLAG, _> = Example { x: 0 };
|
2020-11-13 19:23:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2021-02-14 04:35:18 +00:00
|
|
|
|
|
|
|
|
help: if this generic argument was intended as a const parameter, surround it with braces
|
|
|
|
|
|
|
|
|
LL | let _: Example<{ Example::ASSOC_FLAG }, _> = Example { x: 0 };
|
2021-06-22 02:07:19 +00:00
|
|
|
| + +
|
2020-08-22 03:32:07 +00:00
|
|
|
|
2021-02-14 04:35:18 +00:00
|
|
|
error[E0747]: unresolved item provided when a constant was expected
|
2020-08-31 17:12:53 +00:00
|
|
|
--> $DIR/invalid-enum.rs:21:12
|
|
|
|
|
|
|
|
|
LL | test_1::<CompileFlag::A>();
|
2020-11-13 19:23:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2021-02-14 04:35:18 +00:00
|
|
|
|
|
|
|
|
help: if this generic argument was intended as a const parameter, surround it with braces
|
|
|
|
|
|
|
|
|
LL | test_1::<{ CompileFlag::A }>();
|
2021-06-22 02:07:19 +00:00
|
|
|
| + +
|
2020-08-31 17:12:53 +00:00
|
|
|
|
2021-02-14 04:35:18 +00:00
|
|
|
error[E0747]: unresolved item provided when a constant was expected
|
2020-11-13 19:23:37 +00:00
|
|
|
--> $DIR/invalid-enum.rs:25:15
|
2020-08-31 17:12:53 +00:00
|
|
|
|
|
|
|
|
LL | test_2::<_, CompileFlag::A>(0);
|
2020-11-13 19:23:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2021-02-14 04:35:18 +00:00
|
|
|
|
|
|
|
|
help: if this generic argument was intended as a const parameter, surround it with braces
|
|
|
|
|
|
|
|
|
LL | test_2::<_, { CompileFlag::A }>(0);
|
2021-06-22 02:07:19 +00:00
|
|
|
| + +
|
2020-08-22 03:32:07 +00:00
|
|
|
|
2020-11-13 19:23:37 +00:00
|
|
|
error: aborting due to 7 previous errors
|
2020-08-22 03:32:07 +00:00
|
|
|
|
2020-11-13 19:23:37 +00:00
|
|
|
Some errors have detailed explanations: E0573, E0747.
|
|
|
|
For more information about an error, try `rustc --explain E0573`.
|