summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/type-dependent/type-mismatch.min.stderr
blob: 70bc64057989955b680543d003d4e2cf37f0a5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0308]: mismatched types
  --> $DIR/type-mismatch.rs:8:27
   |
LL |     assert_eq!(R.method::<1u16>(), 1);
   |                           ^^^^ expected `u8`, found `u16`
   |
help: change the type of the numeric literal from `u16` to `u8`
   |
LL |     assert_eq!(R.method::<1u8>(), 1);
   |                            ~~

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.