diff options
Diffstat (limited to 'crates/hir_ty/src/tests')
-rw-r--r-- | crates/hir_ty/src/tests/simple.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/hir_ty/src/tests/simple.rs b/crates/hir_ty/src/tests/simple.rs index a3ae304a1..4f72582b6 100644 --- a/crates/hir_ty/src/tests/simple.rs +++ b/crates/hir_ty/src/tests/simple.rs | |||
@@ -1,4 +1,5 @@ | |||
1 | use expect_test::expect; | 1 | use expect_test::expect; |
2 | use test_utils::mark; | ||
2 | 3 | ||
3 | use super::{check_infer, check_types}; | 4 | use super::{check_infer, check_types}; |
4 | 5 | ||
@@ -2228,6 +2229,8 @@ fn generic_default_depending_on_other_type_arg_forward() { | |||
2228 | 2229 | ||
2229 | #[test] | 2230 | #[test] |
2230 | fn infer_operator_overload() { | 2231 | fn infer_operator_overload() { |
2232 | mark::check!(infer_expr_inner_binary_operator_overload); | ||
2233 | |||
2231 | check_infer( | 2234 | check_infer( |
2232 | r#" | 2235 | r#" |
2233 | struct V2([f32; 2]); | 2236 | struct V2([f32; 2]); |