2021-02-13 22:12:59 +09:00
|
|
|
//! This is a minimal reproducer for the ICE in https://github.com/rust-lang/rust-clippy/pull/6179.
|
|
|
|
//! The ICE is mainly caused by using `hir_ty_to_ty`. See the discussion in the PR for details.
|
|
|
|
|
|
|
|
#![warn(clippy::use_self)]
|
2023-03-08 17:31:00 +01:00
|
|
|
#![allow(dead_code, clippy::let_with_type_underscore)]
|
2021-02-13 22:12:59 +09:00
|
|
|
|
2022-03-27 14:41:09 +02:00
|
|
|
struct Foo;
|
2021-02-13 22:12:59 +09:00
|
|
|
|
|
|
|
impl Foo {
|
2021-06-25 16:34:45 -04:00
|
|
|
fn new() -> Self {
|
2021-02-13 22:12:59 +09:00
|
|
|
impl Foo {
|
|
|
|
fn bar() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
let _: _ = 1;
|
|
|
|
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|