summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/defaults/generic-expr-default-mismatched-types.stderr
blob: 25b3fed0daffd723d75791e2aa8525368fbee02e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0308]: mismatched types
  --> $DIR/generic-expr-default-mismatched-types.rs:12:5
   |
LL |     Foo::<N, { N + 2 }>
   |     ^^^^^^^^^^^^^^^^^^^ expected `{ N + 1 }`, found `{ N + 2 }`
   |
   = note: expected constant `{ N + 1 }`
              found constant `{ N + 2 }`

error: aborting due to 1 previous error

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