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

99 lines
2.2 KiB
Plaintext
Raw Normal View History

2018-11-20 23:12:30 -06:00
error: found 'hi's
--> $DIR/subspan.rs:21:1
2018-11-20 23:12:30 -06:00
|
LL | subspan!("hi"); //~ ERROR found 'hi's
| ^^^^^^^^^^^^^^^
|
note: here
--> $DIR/subspan.rs:21:11
2018-11-20 23:12:30 -06:00
|
LL | subspan!("hi"); //~ ERROR found 'hi's
| ^^
error: found 'hi's
--> $DIR/subspan.rs:24:1
2018-11-20 23:12:30 -06:00
|
LL | subspan!("hihi"); //~ ERROR found 'hi's
| ^^^^^^^^^^^^^^^^^
|
note: here
--> $DIR/subspan.rs:24:11
2018-11-20 23:12:30 -06:00
|
LL | subspan!("hihi"); //~ ERROR found 'hi's
| ^^^^
error: found 'hi's
--> $DIR/subspan.rs:27:1
2018-11-20 23:12:30 -06:00
|
LL | subspan!("hihihi"); //~ ERROR found 'hi's
| ^^^^^^^^^^^^^^^^^^^
|
note: here
--> $DIR/subspan.rs:27:11
2018-11-20 23:12:30 -06:00
|
LL | subspan!("hihihi"); //~ ERROR found 'hi's
| ^^^^^^
error: found 'hi's
--> $DIR/subspan.rs:30:1
2018-11-20 23:12:30 -06:00
|
LL | subspan!("why I hide? hi!"); //~ ERROR found 'hi's
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: here
--> $DIR/subspan.rs:30:17
2018-11-20 23:12:30 -06:00
|
LL | subspan!("why I hide? hi!"); //~ ERROR found 'hi's
| ^^ ^^
error: found 'hi's
--> $DIR/subspan.rs:31:1
2018-11-20 23:12:30 -06:00
|
LL | subspan!("hey, hi, hidy, hidy, hi hi"); //~ ERROR found 'hi's
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: here
--> $DIR/subspan.rs:31:16
2018-11-20 23:12:30 -06:00
|
LL | subspan!("hey, hi, hidy, hidy, hi hi"); //~ ERROR found 'hi's
| ^^ ^^ ^^ ^^ ^^
error: found 'hi's
--> $DIR/subspan.rs:32:1
2018-11-20 23:12:30 -06:00
|
LL | subspan!("this is a hi, and this is another hi"); //~ ERROR found 'hi's
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: here
--> $DIR/subspan.rs:32:12
2018-11-20 23:12:30 -06:00
|
LL | subspan!("this is a hi, and this is another hi"); //~ ERROR found 'hi's
| ^^ ^^ ^^ ^^
error: found 'hi's
--> $DIR/subspan.rs:33:1
2018-11-20 23:12:30 -06:00
|
LL | subspan!("how are you this evening"); //~ ERROR found 'hi's
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: here
--> $DIR/subspan.rs:33:24
2018-11-20 23:12:30 -06:00
|
LL | subspan!("how are you this evening"); //~ ERROR found 'hi's
| ^^
error: found 'hi's
--> $DIR/subspan.rs:34:1
2018-11-20 23:12:30 -06:00
|
LL | subspan!("this is highly eradic"); //~ ERROR found 'hi's
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: here
--> $DIR/subspan.rs:34:12
2018-11-20 23:12:30 -06:00
|
LL | subspan!("this is highly eradic"); //~ ERROR found 'hi's
| ^^ ^^
error: aborting due to 8 previous errors