summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/issue-117920.rs
blob: 928f194c59c3ffe03c7f358c0ae0d8b2e5178072 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![crate_type = "lib"]

use super::A; //~ ERROR failed to resolve

mod b {
    pub trait A {}
    pub trait B {}
}

/// [`A`]
pub use b::*;