summary refs log tree commit diff
path: root/src/test/ui/issue-4517.stderr
blob: ca96c396fd0bfb8594ccc52b890c8da4d4a434d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0308]: mismatched types
  --> $DIR/issue-4517.rs:15:9
   |
LL |     bar(foo);
   |         ^^^ expected usize, found array of 4 elements
   |
   = note: expected type `usize`
              found type `[u8; 4]`

error: aborting due to previous error

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