about summary refs log tree commit diff
path: root/tests/ui/unsized/param-mentioned-by-different-field.stderr
blob: 0d8b59aa9227f48a0822bff762d5915aa3649e8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0308]: mismatched types
  --> $DIR/param-mentioned-by-different-field.rs:8:25
   |
LL |     let y: &Foo<[u8]> = &x;
   |            ----------   ^^ expected `&Foo<[u8]>`, found `&Foo<[u8; 1]>`
   |            |
   |            expected due to this
   |
   = note: expected reference `&Foo<[u8]>`
              found reference `&Foo<[u8; 1]>`

error: aborting due to 1 previous error

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