rust/src/test/ui/proc-macro/multispan.stderr

94 lines
2.6 KiB
Plaintext
Raw Normal View History

error: hello to you, too!
2020-02-10 10:37:12 -06:00
--> $DIR/multispan.rs:14:5
|
LL | hello!(hi);
| ^^^^^^^^^^^
|
note: found these 'hi's
2018-12-25 09:56:47 -06:00
--> $DIR/multispan.rs:14:12
|
2019-03-09 06:03:44 -06:00
LL | hello!(hi);
| ^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: hello to you, too!
2020-02-10 10:37:12 -06:00
--> $DIR/multispan.rs:17:5
|
LL | hello!(hi hi);
| ^^^^^^^^^^^^^^
|
note: found these 'hi's
2018-12-25 09:56:47 -06:00
--> $DIR/multispan.rs:17:12
|
2019-03-09 06:03:44 -06:00
LL | hello!(hi hi);
| ^^ ^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: hello to you, too!
2020-02-10 10:37:12 -06:00
--> $DIR/multispan.rs:20:5
|
LL | hello!(hi hi hi);
| ^^^^^^^^^^^^^^^^^
|
note: found these 'hi's
2018-12-25 09:56:47 -06:00
--> $DIR/multispan.rs:20:12
|
2019-03-09 06:03:44 -06:00
LL | hello!(hi hi hi);
| ^^ ^^ ^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: hello to you, too!
2020-02-10 10:37:12 -06:00
--> $DIR/multispan.rs:23:5
|
LL | hello!(hi hey hi yo hi beep beep hi hi);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: found these 'hi's
2018-12-25 09:56:47 -06:00
--> $DIR/multispan.rs:23:12
|
2019-03-09 06:03:44 -06:00
LL | hello!(hi hey hi yo hi beep beep hi hi);
| ^^ ^^ ^^ ^^ ^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: hello to you, too!
2020-02-10 10:37:12 -06:00
--> $DIR/multispan.rs:24:5
|
LL | hello!(hi there, hi how are you? hi... hi.);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: found these 'hi's
2018-12-25 09:56:47 -06:00
--> $DIR/multispan.rs:24:12
|
2019-03-09 06:03:44 -06:00
LL | hello!(hi there, hi how are you? hi... hi.);
| ^^ ^^ ^^ ^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: hello to you, too!
2020-02-10 10:37:12 -06:00
--> $DIR/multispan.rs:25:5
|
LL | hello!(whoah. hi di hi di ho);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: found these 'hi's
2018-12-25 09:56:47 -06:00
--> $DIR/multispan.rs:25:19
|
2019-03-09 06:03:44 -06:00
LL | hello!(whoah. hi di hi di ho);
| ^^ ^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: hello to you, too!
2020-02-10 10:37:12 -06:00
--> $DIR/multispan.rs:26:5
|
LL | hello!(hi good hi and good bye);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: found these 'hi's
2018-12-25 09:56:47 -06:00
--> $DIR/multispan.rs:26:12
|
2019-03-09 06:03:44 -06:00
LL | hello!(hi good hi and good bye);
| ^^ ^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to 7 previous errors