1error[E0624]: associated function `meth_struct` is private
2  --> $DIR/xc-private-method2.rs:6:52
3   |
4LL |     let _ = xc_private_method_lib::Struct{ x: 10 }.meth_struct();
5   |                                                    ^^^^^^^^^^^ private associated function
6   |
7  ::: $DIR/auxiliary/xc-private-method-lib.rs:12:5
8   |
9LL |     fn meth_struct(&self) -> isize {
10   |     ------------------------------ private associated function defined here
11
12error[E0624]: associated function `meth_enum` is private
13  --> $DIR/xc-private-method2.rs:9:55
14   |
15LL |     let _ = xc_private_method_lib::Enum::Variant1(20).meth_enum();
16   |                                                       ^^^^^^^^^ private associated function
17   |
18  ::: $DIR/auxiliary/xc-private-method-lib.rs:27:5
19   |
20LL |     fn meth_enum(&self) -> isize {
21   |     ---------------------------- private associated function defined here
22
23error: aborting due to 2 previous errors
24
25For more information about this error, try `rustc --explain E0624`.
26