rust/tests/ui/resolve/derive-macro-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
237 B
Rust
Raw Permalink Normal View History

//@ 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() {}