]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type-alias-enum-variants/no-type-application-on-aliased-enum-variant.stderr
Rollup merge of #99460 - JanBeh:PR_asref_asmut_docs, r=joshtriplett
[rust.git] / src / test / ui / type-alias-enum-variants / no-type-application-on-aliased-enum-variant.stderr
1 error[E0109]: type arguments are not allowed on this type
2   --> $DIR/no-type-application-on-aliased-enum-variant.rs:13:27
3    |
4 LL |     let _ = Alias::None::<u8>;
5    |                    ----   ^^ type argument not allowed
6    |                    |
7    |                    not allowed on this type
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0109`.