2021-02-27 06:52:15 -06:00
|
|
|
//! 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;
|
|
|
|
}
|
|
|
|
|
2022-03-27 07:41:09 -05:00
|
|
|
struct Foo;
|
2021-02-27 06:52:15 -06:00
|
|
|
|
|
|
|
impl Trait for Foo {
|
|
|
|
type Ty = Foo;
|
|
|
|
|
|
|
|
fn broken() -> Self::Ty {
|
|
|
|
Self::Ty {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|