summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/derive-macro-2.rs
blob: 7cecdd9e38e7782c90824bff527d9915bbfd2b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// check-pass
// aux-build:issue-112831-aux.rs

extern crate issue_112831_aux;
use issue_112831_aux::Zeroable;

mod z {
    pub trait Zeroable {}
}

use z::*;

mod pod {
    use super::*;
    pub trait Pod: Zeroable {}
}

fn main() {}