]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/multispan.stderr
Auto merge of #106349 - LeSeulArtichaut:dyn-star-tracking-issue, r=jackh726
[rust.git] / src / test / ui / proc-macro / multispan.stderr
1 error: hello to you, too!
2   --> $DIR/multispan.rs:12:5
3    |
4 LL |     hello!(hi);
5    |     ^^^^^^^^^^
6    |
7 note: found these 'hi's
8   --> $DIR/multispan.rs:12:12
9    |
10 LL |     hello!(hi);
11    |            ^^
12    = note: this error originates in the macro `hello` (in Nightly builds, run with -Z macro-backtrace for more info)
13
14 error: hello to you, too!
15   --> $DIR/multispan.rs:15:5
16    |
17 LL |     hello!(hi hi);
18    |     ^^^^^^^^^^^^^
19    |
20 note: found these 'hi's
21   --> $DIR/multispan.rs:15:12
22    |
23 LL |     hello!(hi hi);
24    |            ^^ ^^
25    = note: this error originates in the macro `hello` (in Nightly builds, run with -Z macro-backtrace for more info)
26
27 error: hello to you, too!
28   --> $DIR/multispan.rs:18:5
29    |
30 LL |     hello!(hi hi hi);
31    |     ^^^^^^^^^^^^^^^^
32    |
33 note: found these 'hi's
34   --> $DIR/multispan.rs:18:12
35    |
36 LL |     hello!(hi hi hi);
37    |            ^^ ^^ ^^
38    = note: this error originates in the macro `hello` (in Nightly builds, run with -Z macro-backtrace for more info)
39
40 error: hello to you, too!
41   --> $DIR/multispan.rs:21:5
42    |
43 LL |     hello!(hi hey hi yo hi beep beep hi hi);
44    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
45    |
46 note: found these 'hi's
47   --> $DIR/multispan.rs:21:12
48    |
49 LL |     hello!(hi hey hi yo hi beep beep hi hi);
50    |            ^^     ^^    ^^           ^^ ^^
51    = note: this error originates in the macro `hello` (in Nightly builds, run with -Z macro-backtrace for more info)
52
53 error: hello to you, too!
54   --> $DIR/multispan.rs:22:5
55    |
56 LL |     hello!(hi there, hi how are you? hi... hi.);
57    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
58    |
59 note: found these 'hi's
60   --> $DIR/multispan.rs:22:12
61    |
62 LL |     hello!(hi there, hi how are you? hi... hi.);
63    |            ^^        ^^              ^^    ^^
64    = note: this error originates in the macro `hello` (in Nightly builds, run with -Z macro-backtrace for more info)
65
66 error: hello to you, too!
67   --> $DIR/multispan.rs:23:5
68    |
69 LL |     hello!(whoah. hi di hi di ho);
70    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
71    |
72 note: found these 'hi's
73   --> $DIR/multispan.rs:23:19
74    |
75 LL |     hello!(whoah. hi di hi di ho);
76    |                   ^^    ^^
77    = note: this error originates in the macro `hello` (in Nightly builds, run with -Z macro-backtrace for more info)
78
79 error: hello to you, too!
80   --> $DIR/multispan.rs:24:5
81    |
82 LL |     hello!(hi good hi and good bye);
83    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
84    |
85 note: found these 'hi's
86   --> $DIR/multispan.rs:24:12
87    |
88 LL |     hello!(hi good hi and good bye);
89    |            ^^      ^^
90    = note: this error originates in the macro `hello` (in Nightly builds, run with -Z macro-backtrace for more info)
91
92 error: aborting due to 7 previous errors
93