rust/tests/ui/imports/auxiliary/ambiguous-8-extern.rs

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

13 lines
144 B
Rust
Raw Normal View History

mod t2 {
#[derive(Debug)]
pub enum Error {}
mod t {
pub trait Error: Sized {}
}
use self::t::*;
}
pub use t2::*;