rust/tests/ui/suggestions/dont-suggest-deref-inside-macro-issue-58298.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
509 B
Plaintext
Raw Normal View History

2019-03-27 19:05:35 -05:00
error[E0308]: mismatched types
--> $DIR/dont-suggest-deref-inside-macro-issue-58298.rs:11:5
2019-03-27 19:05:35 -05:00
|
LL | / intrinsic_match! {
LL | | "abc"
LL | | };
2021-10-14 13:28:28 -05:00
| |_____^ expected `&str`, found struct `String`
2019-03-27 19:05:35 -05:00
|
= note: this error originates in the macro `format` which comes from the expansion of the macro `intrinsic_match` (in Nightly builds, run with -Z macro-backtrace for more info)
2019-03-27 19:05:35 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.