mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
16 lines
323 B
Rust
16 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() {}
|