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
502 B
Plaintext
Raw Normal View History

2019-03-28 00:05:35 +00:00
error[E0308]: mismatched types
--> $DIR/dont-suggest-deref-inside-macro-issue-58298.rs:11:5
2019-03-28 00:05:35 +00:00
|
LL | / intrinsic_match! {
LL | | "abc"
LL | | };
| |_____^ expected `&str`, found `String`
2019-03-28 00:05:35 +00: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-28 00:05:35 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.