]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/dont-suggest-deref-inside-macro-issue-58298.stderr
Rollup merge of #65261 - nnethercote:rm-Option-from-TokenStream, r=petrochenkov
[rust.git] / src / test / ui / suggestions / dont-suggest-deref-inside-macro-issue-58298.stderr
1 error[E0308]: mismatched types
2   --> $DIR/dont-suggest-deref-inside-macro-issue-58298.rs:11:5
3    |
4 LL | /     intrinsic_match! {
5 LL | |         "abc"
6 LL | |     };
7    | |      ^
8    | |      |
9    | |______expected &str, found struct `std::string::String`
10    |        in this macro invocation
11    |
12    = note: expected type `&str`
13               found type `std::string::String`
14    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0308`.