summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/defaults/generic-expr-default-mismatched-types.stderr
blob: d5a3071b77d15fec82c2d84ccf84ab407a407d26 (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 type `{ N + 1 }`
              found type `{ N + 2 }`

error: aborting due to previous error

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