2019-03-12 00:49:17 +00:00
|
|
|
//@ aux-build:xc-private-method-lib.rs
|
2013-03-20 14:38:57 -07:00
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate xc_private_method_lib;
|
2013-03-20 14:38:57 -07:00
|
|
|
|
|
|
|
fn main() {
|
2013-08-07 00:11:34 -07:00
|
|
|
let _ = xc_private_method_lib::Struct::static_meth_struct();
|
2020-03-04 21:03:15 -06:00
|
|
|
//~^ ERROR: associated function `static_meth_struct` is private
|
2013-08-07 14:29:29 +02:00
|
|
|
|
2013-08-07 00:11:34 -07:00
|
|
|
let _ = xc_private_method_lib::Enum::static_meth_enum();
|
2020-03-04 21:03:15 -06:00
|
|
|
//~^ ERROR: associated function `static_meth_enum` is private
|
2013-03-20 14:38:57 -07:00
|
|
|
}
|