]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-16338.stderr
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-16338.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-16338.rs:7:9
3    |
4 LL |     let Slice { data: data, len: len } = "foo";
5    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^   ----- this expression has type `&str`
6    |         |
7    |         expected `str`, found struct `Slice`
8    |
9    = note: expected type `str`
10             found struct `Slice<_>`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.