rust/tests/ui/annotate-snippet/multiple-files.rs
2025-12-16 13:23:45 +00:00

8 lines
161 B
Rust

//@ aux-build:other_file.rs
//@ compile-flags: --error-format human
extern crate other_file;
fn main() {
other_file::WithPrivateMethod.private_method();
}