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
504 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 | | };
| |_____^ expected `&str`, found `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 1 previous error
2019-03-27 19:05:35 -05:00
For more information about this error, try `rustc --explain E0308`.