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

13 lines
144 B
Rust

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