2018-09-13 08:16:54 +00:00
|
|
|
error: hello to you, too!
|
2019-08-20 23:35:03 +03:00
|
|
|
--> $DIR/auxiliary/multispan.rs:31:1
|
|
|
|
|
|
|
|
|
LL | / pub fn hello(input: TokenStream) -> TokenStream {
|
|
|
|
LL | | if let Err(diag) = parse(input) {
|
|
|
|
LL | | diag.emit();
|
|
|
|
LL | | }
|
|
|
|
LL | |
|
|
|
|
LL | | TokenStream::new()
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
::: $DIR/multispan.rs:14:5
|
|
|
|
|
|
|
|
|
LL | hello!(hi);
|
|
|
|
| ----------- in this macro invocation
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
|
note: found these 'hi's
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/multispan.rs:14:12
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | hello!(hi);
|
2018-09-13 08:16:54 +00:00
|
|
|
| ^^
|
2019-12-16 15:56:47 +02:00
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
error: hello to you, too!
|
2019-08-20 23:35:03 +03:00
|
|
|
--> $DIR/auxiliary/multispan.rs:31:1
|
|
|
|
|
|
|
|
|
LL | / pub fn hello(input: TokenStream) -> TokenStream {
|
|
|
|
LL | | if let Err(diag) = parse(input) {
|
|
|
|
LL | | diag.emit();
|
|
|
|
LL | | }
|
|
|
|
LL | |
|
|
|
|
LL | | TokenStream::new()
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
::: $DIR/multispan.rs:17:5
|
|
|
|
|
|
|
|
|
LL | hello!(hi hi);
|
|
|
|
| -------------- in this macro invocation
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
|
note: found these 'hi's
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/multispan.rs:17:12
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | hello!(hi hi);
|
2018-09-13 08:16:54 +00:00
|
|
|
| ^^ ^^
|
2019-12-16 15:56:47 +02:00
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
error: hello to you, too!
|
2019-08-20 23:35:03 +03:00
|
|
|
--> $DIR/auxiliary/multispan.rs:31:1
|
|
|
|
|
|
|
|
|
LL | / pub fn hello(input: TokenStream) -> TokenStream {
|
|
|
|
LL | | if let Err(diag) = parse(input) {
|
|
|
|
LL | | diag.emit();
|
|
|
|
LL | | }
|
|
|
|
LL | |
|
|
|
|
LL | | TokenStream::new()
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
::: $DIR/multispan.rs:20:5
|
|
|
|
|
|
|
|
|
LL | hello!(hi hi hi);
|
|
|
|
| ----------------- in this macro invocation
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
|
note: found these 'hi's
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/multispan.rs:20:12
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | hello!(hi hi hi);
|
2018-09-13 08:16:54 +00:00
|
|
|
| ^^ ^^ ^^
|
2019-12-16 15:56:47 +02:00
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
error: hello to you, too!
|
2019-08-20 23:35:03 +03:00
|
|
|
--> $DIR/auxiliary/multispan.rs:31:1
|
|
|
|
|
|
|
|
|
LL | / pub fn hello(input: TokenStream) -> TokenStream {
|
|
|
|
LL | | if let Err(diag) = parse(input) {
|
|
|
|
LL | | diag.emit();
|
|
|
|
LL | | }
|
|
|
|
LL | |
|
|
|
|
LL | | TokenStream::new()
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
::: $DIR/multispan.rs:23:5
|
|
|
|
|
|
|
|
|
LL | hello!(hi hey hi yo hi beep beep hi hi);
|
|
|
|
| ---------------------------------------- in this macro invocation
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
|
note: found these 'hi's
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/multispan.rs:23:12
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | hello!(hi hey hi yo hi beep beep hi hi);
|
2018-09-13 08:16:54 +00:00
|
|
|
| ^^ ^^ ^^ ^^ ^^
|
2019-12-16 15:56:47 +02:00
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
error: hello to you, too!
|
2019-08-20 23:35:03 +03:00
|
|
|
--> $DIR/auxiliary/multispan.rs:31:1
|
|
|
|
|
|
|
|
|
LL | / pub fn hello(input: TokenStream) -> TokenStream {
|
|
|
|
LL | | if let Err(diag) = parse(input) {
|
|
|
|
LL | | diag.emit();
|
|
|
|
LL | | }
|
|
|
|
LL | |
|
|
|
|
LL | | TokenStream::new()
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
::: $DIR/multispan.rs:24:5
|
|
|
|
|
|
|
|
|
LL | hello!(hi there, hi how are you? hi... hi.);
|
|
|
|
| -------------------------------------------- in this macro invocation
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
|
note: found these 'hi's
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/multispan.rs:24:12
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | hello!(hi there, hi how are you? hi... hi.);
|
2018-09-13 08:16:54 +00:00
|
|
|
| ^^ ^^ ^^ ^^
|
2019-12-16 15:56:47 +02:00
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
error: hello to you, too!
|
2019-08-20 23:35:03 +03:00
|
|
|
--> $DIR/auxiliary/multispan.rs:31:1
|
|
|
|
|
|
|
|
|
LL | / pub fn hello(input: TokenStream) -> TokenStream {
|
|
|
|
LL | | if let Err(diag) = parse(input) {
|
|
|
|
LL | | diag.emit();
|
|
|
|
LL | | }
|
|
|
|
LL | |
|
|
|
|
LL | | TokenStream::new()
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
::: $DIR/multispan.rs:25:5
|
|
|
|
|
|
|
|
|
LL | hello!(whoah. hi di hi di ho);
|
|
|
|
| ------------------------------ in this macro invocation
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
|
note: found these 'hi's
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/multispan.rs:25:19
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | hello!(whoah. hi di hi di ho);
|
2018-09-13 08:16:54 +00:00
|
|
|
| ^^ ^^
|
2019-12-16 15:56:47 +02:00
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
error: hello to you, too!
|
2019-08-20 23:35:03 +03:00
|
|
|
--> $DIR/auxiliary/multispan.rs:31:1
|
|
|
|
|
|
|
|
|
LL | / pub fn hello(input: TokenStream) -> TokenStream {
|
|
|
|
LL | | if let Err(diag) = parse(input) {
|
|
|
|
LL | | diag.emit();
|
|
|
|
LL | | }
|
|
|
|
LL | |
|
|
|
|
LL | | TokenStream::new()
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
::: $DIR/multispan.rs:26:5
|
|
|
|
|
|
|
|
|
LL | hello!(hi good hi and good bye);
|
|
|
|
| -------------------------------- in this macro invocation
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
|
note: found these 'hi's
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/multispan.rs:26:12
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | hello!(hi good hi and good bye);
|
2018-09-13 08:16:54 +00:00
|
|
|
| ^^ ^^
|
2019-12-16 15:56:47 +02:00
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-09-13 08:16:54 +00:00
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|