summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/expand-expr.stderr
blob: c6c4695fd9c43ee3093272a895cd3ff6f70b74af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
error: expected one of `.`, `?`, or an operator, found `;`
  --> $DIR/expand-expr.rs:106:27
   |
LL | expand_expr_fail!("string"; hello);
   |                           ^ expected one of `.`, `?`, or an operator

error: expected expression, found `$`
  --> $DIR/expand-expr.rs:109:19
   |
LL | expand_expr_fail!($);
   |                   ^ expected expression

error: expected expression, found `$`
  --> $DIR/expand-expr.rs:38:23
   |
LL |     ($($t:tt)*) => { $($t)* };
   |                       ^^^^ expected expression

error: expected expression, found `$`
  --> $DIR/expand-expr.rs:111:28
   |
LL | expand_expr_fail!(echo_pm!($));
   |                            ^ expected expression

error: macro expansion ignores token `hello` and any following
  --> $DIR/expand-expr.rs:115:47
   |
LL | expand_expr_is!("string", echo_tts!("string"; hello));
   |                           --------------------^^^^^-- help: you might be missing a semicolon here: `;`
   |                           |
   |                           caused by the macro expansion here
   |
   = note: the usage of `echo_tts!` is likely invalid in expression context

error: macro expansion ignores token `;` and any following
  --> $DIR/expand-expr.rs:116:44
   |
LL | expand_expr_is!("string", echo_pm!("string"; hello));
   |                           -----------------^-------- help: you might be missing a semicolon here: `;`
   |                           |
   |                           caused by the macro expansion here
   |
   = note: the usage of `echo_pm!` is likely invalid in expression context

error: recursion limit reached while expanding `recursive_expand!`
  --> $DIR/expand-expr.rs:124:16
   |
LL | const _: u32 = recursive_expand!();
   |                ^^^^^^^^^^^^^^^^^^^
   |
   = help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`expand_expr`)
   = note: this error originates in the macro `recursive_expand` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to 7 previous errors