Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/tests/regression.rs')
| -rw-r--r-- | crates/hir-ty/src/tests/regression.rs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/crates/hir-ty/src/tests/regression.rs b/crates/hir-ty/src/tests/regression.rs index c4822a90f9..638306054a 100644 --- a/crates/hir-ty/src/tests/regression.rs +++ b/crates/hir-ty/src/tests/regression.rs @@ -1585,23 +1585,6 @@ type Member<U> = ConstGen<U, N>; } #[test] -fn cfgd_out_self_param() { - cov_mark::check!(cfgd_out_self_param); - check_no_mismatches( - r#" -struct S; -impl S { - fn f(#[cfg(never)] &self) {} -} - -fn f(s: S) { - s.f(); -} -"#, - ); -} - -#[test] fn tuple_struct_pattern_with_unmatched_args_crash() { check_infer( r#" |