mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
17 lines
323 B
Rust
17 lines
323 B
Rust
|
//@ run-rustfix
|
||
|
|
||
|
#![allow(unused_imports)]
|
||
|
|
||
|
pub mod extension1 {
|
||
|
pub trait ConstructorExtension {}
|
||
|
}
|
||
|
|
||
|
pub mod extension2 {
|
||
|
pub trait ConstructorExtension {}
|
||
|
}
|
||
|
|
||
|
use extension1::ConstructorExtension;
|
||
|
use extension2::ConstructorExtension as OtherConstructorExtension; //~ ERROR is defined multiple times
|
||
|
|
||
|
fn main() {}
|