2020-03-04 21:03:15 -06:00
|
|
|
error[E0624]: associated function `static_meth_struct` is private
|
2020-03-22 16:09:42 -07:00
|
|
|
--> $DIR/xc-private-method.rs:6:44
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | let _ = xc_private_method_lib::Struct::static_meth_struct();
|
2020-03-22 16:09:42 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ private associated function
|
2021-06-10 13:52:00 +02:00
|
|
|
|
|
2021-07-17 11:13:50 -07:00
|
|
|
::: $DIR/auxiliary/xc-private-method-lib.rs:8:5
|
|
|
|
|
|
|
|
|
LL | fn static_meth_struct() -> Struct {
|
|
|
|
| --------------------------------- private associated function defined here
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2020-03-04 21:03:15 -06:00
|
|
|
error[E0624]: associated function `static_meth_enum` is private
|
2020-03-22 16:09:42 -07:00
|
|
|
--> $DIR/xc-private-method.rs:9:42
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | let _ = xc_private_method_lib::Enum::static_meth_enum();
|
2020-03-22 16:09:42 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^ private associated function
|
2021-06-10 13:52:00 +02:00
|
|
|
|
|
2021-07-17 11:13:50 -07:00
|
|
|
::: $DIR/auxiliary/xc-private-method-lib.rs:23:5
|
|
|
|
|
|
|
|
|
LL | fn static_meth_enum() -> Enum {
|
|
|
|
| ----------------------------- private associated function defined here
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0624`.
|