summary refs log tree commit diff
path: root/src/test/ui/issue-25386.stderr
blob: 986961d36c9e5a52cb73548231d01f55651abc2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0616]: field `c_object` of struct `stuff::Item` is private
  --> $DIR/issue-25386.rs:29:11
   |
LL |         (*$var.c_object).$member.is_some()
   |           ^^^^^^^^^^^^^
...
LL |     println!("{}", check_ptr_exist!(item, name));
   |                    ---------------------------- in this macro invocation

error[E0616]: field `name` of struct `stuff::CObj` is private
  --> $DIR/issue-25386.rs:29:9
   |
LL |         (*$var.c_object).$member.is_some()
   |         ^^^^^^^^^^^^^^^^^^^^^^^^
...
LL |     println!("{}", check_ptr_exist!(item, name));
   |                    ---------------------------- in this macro invocation

error: aborting due to 2 previous errors

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