blob: c67a31d8f07140c1d751ff7d8b617e6c4224daf1 (
plain)
1
2
3
4
5
6
7
8
|
//@ aux-build:other_file.rs
//@ compile-flags: --error-format human-annotate-rs -Z unstable-options
extern crate other_file;
fn main() {
other_file::WithPrivateMethod.private_method();
}
|