2021-02-25 04:25:22 -06:00
|
|
|
//! This is a minimal reproducer for the ICE in https://github.com/rust-lang/rust-clippy/pull/6179.
|
2024-02-11 02:22:52 -06:00
|
|
|
//! The ICE is mainly caused by using `lower_ty`. See the discussion in the PR for details.
|
2021-02-25 04:25:22 -06:00
|
|
|
|
|
|
|
#![warn(clippy::use_self)]
|
2023-03-10 03:53:50 -06:00
|
|
|
#![allow(dead_code, clippy::let_with_type_underscore)]
|
2024-01-26 11:48:18 -06:00
|
|
|
#![allow(non_local_definitions)]
|
2021-02-25 04:25:22 -06:00
|
|
|
|
2022-04-07 12:39:59 -05:00
|
|
|
struct Foo;
|
2021-02-25 04:25:22 -06:00
|
|
|
|
|
|
|
impl Foo {
|
2021-07-19 04:52:05 -05:00
|
|
|
fn new() -> Self {
|
2021-02-25 04:25:22 -06:00
|
|
|
impl Foo {
|
|
|
|
fn bar() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
let _: _ = 1;
|
|
|
|
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|