summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/type-dependent/type-mismatch.full.stderr
blob: 4fce1aede954fcf9165eed13c8b1ae20e4a71762 (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 1 previous error

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