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