12 lines
317 B
Rust
12 lines
317 B
Rust
//@ aux-build:xc-private-method-lib.rs
|
|
|
|
extern crate xc_private_method_lib;
|
|
|
|
fn main() {
|
|
let _ = xc_private_method_lib::Struct{ x: 10 }.meth_struct();
|
|
//~^ ERROR method `meth_struct` is private
|
|
|
|
let _ = xc_private_method_lib::Enum::Variant1(20).meth_enum();
|
|
//~^ ERROR method `meth_enum` is private
|
|
}
|