mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
319 B
Rust
10 lines
319 B
Rust
trait I {}
|
|
type K = dyn I;
|
|
impl K for isize {} //~ ERROR expected trait, found type alias `K`
|
|
|
|
use ImportError; //~ ERROR unresolved import `ImportError` [E0432]
|
|
//~^ no `ImportError` in the root
|
|
impl ImportError for () {} // check that this is not an additional error (cf. issue #35142)
|
|
|
|
fn main() {}
|