mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
20 lines
349 B
Rust
20 lines
349 B
Rust
//! This is a reproducer for the ICE 6792: https://github.com/rust-lang/rust-clippy/issues/6792.
|
|
//! The ICE is caused by using `TyCtxt::type_of(assoc_type_id)`.
|
|
|
|
trait Trait {
|
|
type Ty;
|
|
|
|
fn broken() -> Self::Ty;
|
|
}
|
|
|
|
struct Foo;
|
|
|
|
impl Trait for Foo {
|
|
type Ty = Foo;
|
|
|
|
fn broken() -> Self::Ty {
|
|
Self::Ty {}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|