summaryrefslogtreecommitdiffstats
path: root/tests/ui/annotate-snippet/multiple-files.rs
blob: 981cdbb10a917cbe70e81b18fed01adc244e8d52 (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();
}