summary refs log tree commit diff
path: root/src/test/ui/parser/macro/pub-item-macro.stderr
blob: a624d574c456f212e28632bcb499290c52a0b74b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: can't qualify macro invocation with `pub`
  --> $DIR/pub-item-macro.rs:8:5
   |
LL |     pub priv_x!(); //~ ERROR can't qualify macro invocation with `pub`
   |     ^^^
...
LL |     pub_x!();
   |     --------- in this macro invocation
   |
   = help: try adjusting the macro to put `pub` inside the invocation

error[E0603]: static `x` is private
  --> $DIR/pub-item-macro.rs:17:23
   |
LL |     let y: u32 = foo::x; //~ ERROR static `x` is private
   |                       ^

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0603`.