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