summaryrefslogtreecommitdiffstats
path: root/tests/ui/annotate-snippet/auxiliary/other_file.rs
blob: 6f5f412d0861f7fa074c0e2a2753e1c13d7f701e (plain)
1
2
3
4
5
6
pub struct WithPrivateMethod;

impl WithPrivateMethod {
    /// Private to get an error involving two files
    fn private_method(&self) {}
}