Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_ty/src/tests/coercion.rs')
| -rw-r--r-- | crates/hir_ty/src/tests/coercion.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/hir_ty/src/tests/coercion.rs b/crates/hir_ty/src/tests/coercion.rs index c0dddb608e..268faf8cb3 100644 --- a/crates/hir_ty/src/tests/coercion.rs +++ b/crates/hir_ty/src/tests/coercion.rs @@ -2,12 +2,10 @@ use super::{check, check_no_mismatches, check_types}; #[test] fn block_expr_type_mismatch() { - // FIXME fix double type mismatch check( r" fn test() { let a: i32 = { 1i64 }; - // ^^^^^^^^ expected i32, got i64 // ^^^^ expected i32, got i64 } ", |