mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
322 B
Rust
17 lines
322 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() {}
|