summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/derive-macro-1.rs
blob: 90cbd903ad672aa9e11a4fb6a59a7d6d97a92fbb (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

mod z {
    pub trait Zeroable {}
}

use z::*;

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

extern crate issue_112831_aux;
use issue_112831_aux::Zeroable;

fn main() {}