Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/tests/regression/new_solver.rs')
| -rw-r--r-- | crates/hir-ty/src/tests/regression/new_solver.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/hir-ty/src/tests/regression/new_solver.rs b/crates/hir-ty/src/tests/regression/new_solver.rs index 4866a038d6..420a316009 100644 --- a/crates/hir-ty/src/tests/regression/new_solver.rs +++ b/crates/hir-ty/src/tests/regression/new_solver.rs @@ -554,13 +554,11 @@ where } #[test] -// #[should_panic(expected = "Unexpected type mismatches")] fn regression_19957() { // This test documents issue #19957: async-trait patterns incorrectly produce // type mismatches between Pin<Box<dyn Future>> and Pin<Box<impl Future>>. // // The test currently FAILS (as expected) because the bug is not yet fixed. - // When the bug is fixed, remove the #[should_panic] attribute. check_no_mismatches( r#" //- minicore: future, pin, result, error, send, coerce_unsized, dispatch_from_dyn |