1
Fork 0
rust/tests/ui/error-codes/E0253.rs
2025-01-16 16:34:05 +08:00

10 lines
129 B
Rust

mod foo {
pub trait MyTrait {
type SomeType;
}
}
use foo::MyTrait::SomeType;
//~^ ERROR E0253
fn main() {}