From d8af7983b15d82f19c01e08e90b93708164df320 Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Tue, 16 Jun 2020 22:54:41 +0200 Subject: Use ra_fixture and reformat tests --- crates/ra_hir_ty/src/_match.rs | 772 ++++++++++++++++++++--------------------- 1 file changed, 385 insertions(+), 387 deletions(-) (limited to 'crates') diff --git a/crates/ra_hir_ty/src/_match.rs b/crates/ra_hir_ty/src/_match.rs index 42004282c..02a7a61f1 100644 --- a/crates/ra_hir_ty/src/_match.rs +++ b/crates/ra_hir_ty/src/_match.rs @@ -842,194 +842,193 @@ mod tests { pub(super) use crate::{diagnostics::MissingMatchArms, test_db::TestDB}; - pub(super) fn check_diagnostic_message(content: &str) -> String { - TestDB::with_single_file(content).0.diagnostic::().0 + pub(super) fn check_diagnostic_message(ra_fixture: &str) -> String { + TestDB::with_single_file(ra_fixture).0.diagnostic::().0 } - pub(super) fn check_diagnostic(content: &str) { + pub(super) fn check_diagnostic(ra_fixture: &str) { let diagnostic_count = - TestDB::with_single_file(content).0.diagnostic::().1; + TestDB::with_single_file(ra_fixture).0.diagnostic::().1; assert_eq!(1, diagnostic_count, "no diagnostic reported"); } - pub(super) fn check_no_diagnostic(content: &str) { + pub(super) fn check_no_diagnostic(ra_fixture: &str) { let diagnostic_count = - TestDB::with_single_file(content).0.diagnostic::().1; + TestDB::with_single_file(ra_fixture).0.diagnostic::().1; assert_eq!(0, diagnostic_count, "expected no diagnostic, found one"); } #[test] fn empty_tuple_no_arms_diagnostic_message() { - let content = r" - fn test_fn() { - match () { - } - } - "; - assert_snapshot!( - check_diagnostic_message(content), + check_diagnostic_message(r" + fn test_fn() { + match () { + } + } + "), @"\"()\": Missing match arm\n" ); } #[test] fn empty_tuple_no_arms() { - let content = r" + check_diagnostic( + r" fn test_fn() { match () { } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn empty_tuple_wild() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match () { _ => {} } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn empty_tuple_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match () { () => {} } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_empty_tuple_no_arms() { - let content = r" + check_diagnostic( + r" fn test_fn() { match (()) { } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn tuple_of_empty_tuple_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match (()) { (()) => {} } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_two_empty_tuple_no_arms() { - let content = r" + check_diagnostic( + r" fn test_fn() { match ((), ()) { } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn tuple_of_two_empty_tuple_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match ((), ()) { ((), ()) => {} } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn bool_no_arms() { - let content = r" + check_diagnostic( + r" fn test_fn() { match false { } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn bool_missing_arm() { - let content = r" + check_diagnostic( + r" fn test_fn() { match false { true => {} } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn bool_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match false { true => {} false => {} } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_no_arms() { - let content = r" + check_diagnostic( + r" fn test_fn() { match (false, true) { } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_missing_arms() { - let content = r" + check_diagnostic( + r" fn test_fn() { match (false, true) { (true, true) => {}, } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_missing_arm() { - let content = r" + check_diagnostic( + r" fn test_fn() { match (false, true) { (false, true) => {}, @@ -1037,14 +1036,14 @@ mod tests { (true, false) => {}, } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_with_wilds() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match (false, true) { (false, _) => {}, @@ -1052,14 +1051,14 @@ mod tests { (_, true) => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match (false, true) { (true, true) => {}, @@ -1068,27 +1067,27 @@ mod tests { (false, false) => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_binding_missing_arms() { - let content = r" + check_diagnostic( + r" fn test_fn() { match (false, true) { (true, _x) => {}, } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_binding_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match (false, true) { (true, _x) => {}, @@ -1096,80 +1095,80 @@ mod tests { (false, false) => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_with_ellipsis_at_end_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match (false, true, false) { (false, ..) => {}, (true, ..) => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_with_ellipsis_at_beginning_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match (false, true, false) { (.., false) => {}, (.., true) => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_with_ellipsis_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match (false, true, false) { (..) => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_tuple_and_bools_no_arms() { - let content = r" + check_diagnostic( + r" fn test_fn() { match (false, ((), false)) { } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn tuple_of_tuple_and_bools_missing_arms() { - let content = r" + check_diagnostic( + r" fn test_fn() { match (false, ((), false)) { (true, ((), true)) => {}, } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn tuple_of_tuple_and_bools_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match (false, ((), false)) { (true, ((), true)) => {}, @@ -1178,27 +1177,27 @@ mod tests { (false, ((), false)) => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_tuple_and_bools_wildcard_missing_arms() { - let content = r" + check_diagnostic( + r" fn test_fn() { match (false, ((), false)) { (true, _) => {}, } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn tuple_of_tuple_and_bools_wildcard_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" fn test_fn() { match (false, ((), false)) { (true, ((), true)) => {}, @@ -1206,14 +1205,14 @@ mod tests { (false, _) => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_no_arms() { - let content = r" + check_diagnostic( + r" enum Either { A, B, @@ -1222,14 +1221,14 @@ mod tests { match Either::A { } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn enum_missing_arms() { - let content = r" + check_diagnostic( + r" enum Either { A, B, @@ -1239,14 +1238,14 @@ mod tests { Either::A => {}, } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn enum_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A, B, @@ -1257,14 +1256,14 @@ mod tests { Either::B => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_ref_missing_arms() { - let content = r" + check_diagnostic( + r" enum Either { A, B, @@ -1274,14 +1273,14 @@ mod tests { Either::A => {}, } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn enum_ref_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A, B, @@ -1292,14 +1291,14 @@ mod tests { Either::B => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_containing_bool_no_arms() { - let content = r" + check_diagnostic( + r" enum Either { A(bool), B, @@ -1308,14 +1307,14 @@ mod tests { match Either::B { } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn enum_containing_bool_missing_arms() { - let content = r" + check_diagnostic( + r" enum Either { A(bool), B, @@ -1326,14 +1325,14 @@ mod tests { Either::B => (), } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn enum_containing_bool_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A(bool), B, @@ -1345,14 +1344,14 @@ mod tests { Either::B => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_containing_bool_with_wild_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A(bool), B, @@ -1363,14 +1362,14 @@ mod tests { _ => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_containing_bool_with_wild_2_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A(bool), B, @@ -1381,14 +1380,14 @@ mod tests { Either::B => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_different_sizes_missing_arms() { - let content = r" + check_diagnostic( + r" enum Either { A(bool), B(bool, bool), @@ -1399,14 +1398,14 @@ mod tests { Either::B(false, _) => (), } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn enum_different_sizes_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A(bool), B(bool, bool), @@ -1418,14 +1417,14 @@ mod tests { Either::B(false, _) => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn or_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A(bool), B(bool, bool), @@ -1437,14 +1436,14 @@ mod tests { Either::B(false, _) => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_enum_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A(bool), B(bool, bool), @@ -1461,14 +1460,16 @@ mod tests { (Either::B(_, _), Either2::D) => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn mismatched_types() { - let content = r" + // Match statements with arms that don't match the + // expression pattern do not fire this diagnostic. + check_no_diagnostic( + r" enum Either { A, B, @@ -1483,47 +1484,47 @@ mod tests { Either2::D => (), } } - "; - - // Match statements with arms that don't match the - // expression pattern do not fire this diagnostic. - check_no_diagnostic(content); + ", + ); } #[test] fn mismatched_types_with_different_arity() { - let content = r" + // Match statements with arms that don't match the + // expression pattern do not fire this diagnostic. + check_no_diagnostic( + r" fn test_fn() { match (true, false) { (true, false, true) => (), (true) => (), } } - "; - - // Match statements with arms that don't match the - // expression pattern do not fire this diagnostic. - check_no_diagnostic(content); + ", + ); } #[test] fn malformed_match_arm_tuple_missing_pattern() { - let content = r" + // Match statements with arms that don't match the + // expression pattern do not fire this diagnostic. + check_no_diagnostic( + r" fn test_fn() { match (0) { () => (), } } - "; - - // Match statements with arms that don't match the - // expression pattern do not fire this diagnostic. - check_no_diagnostic(content); + ", + ); } #[test] fn malformed_match_arm_tuple_enum_missing_pattern() { - let content = r" + // We are testing to be sure we don't panic here when the match + // arm `Either::B` is missing its pattern. + check_no_diagnostic( + r" enum Either { A, B(u32), @@ -1534,32 +1535,30 @@ mod tests { Either::B() => (), } } - "; - - // We are testing to be sure we don't panic here when the match - // arm `Either::B` is missing its pattern. - check_no_diagnostic(content); + ", + ); } #[test] fn enum_not_in_scope() { - let content = r" + // The enum is not in scope so we don't perform exhaustiveness + // checking, but we want to be sure we don't panic here (and + // we don't create a diagnostic). + check_no_diagnostic( + r" fn test_fn() { match Foo::Bar { Foo::Baz => (), } } - "; - - // The enum is not in scope so we don't perform exhaustiveness - // checking, but we want to be sure we don't panic here (and - // we don't create a diagnostic). - check_no_diagnostic(content); + ", + ); } #[test] fn expr_diverges() { - let content = r" + check_no_diagnostic( + r" enum Either { A, B, @@ -1570,14 +1569,14 @@ mod tests { Either::B => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn expr_loop_with_break() { - let content = r" + check_no_diagnostic( + r" enum Either { A, B, @@ -1588,14 +1587,14 @@ mod tests { Either::B => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn expr_partially_diverges() { - let content = r" + check_no_diagnostic( + r" enum Either { A(T), B, @@ -1609,14 +1608,14 @@ mod tests { Either::B => 0, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_record_no_arms() { - let content = r" + check_diagnostic( + r" enum Either { A { foo: bool }, B, @@ -1626,14 +1625,14 @@ mod tests { match a { } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn enum_record_missing_arms() { - let content = r" + check_diagnostic( + r" enum Either { A { foo: bool }, B, @@ -1644,14 +1643,14 @@ mod tests { Either::A { foo: true } => (), } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn enum_record_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A { foo: bool }, B, @@ -1664,14 +1663,17 @@ mod tests { Either::B => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_record_missing_field_no_diagnostic() { - let content = r" + // When `Either::A` is missing a struct member, we don't want + // to fire the missing match arm diagnostic. This should fire + // some other diagnostic. + check_no_diagnostic( + r" enum Either { A { foo: bool }, B, @@ -1683,17 +1685,16 @@ mod tests { Either::B => (), } } - "; - - // When `Either::A` is missing a struct member, we don't want - // to fire the missing match arm diagnostic. This should fire - // some other diagnostic. - check_no_diagnostic(content); + ", + ); } #[test] fn enum_record_missing_field_missing_match_arm() { - let content = r" + // Even though `Either::A` is missing fields, we still want to fire + // the missing arm diagnostic here, since we know `Either::B` is missing. + check_diagnostic( + r" enum Either { A { foo: bool }, B, @@ -1704,16 +1705,14 @@ mod tests { Either::A { } => (), } } - "; - - // Even though `Either::A` is missing fields, we still want to fire - // the missing arm diagnostic here, since we know `Either::B` is missing. - check_diagnostic(content); + ", + ); } #[test] fn enum_record_no_diagnostic_wild() { - let content = r" + check_no_diagnostic( + r" enum Either { A { foo: bool }, B, @@ -1725,14 +1724,14 @@ mod tests { Either::B => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_record_fields_out_of_order_missing_arm() { - let content = r" + check_diagnostic( + r" enum Either { A { foo: bool, bar: () }, B, @@ -1744,14 +1743,14 @@ mod tests { Either::A { foo: true, bar: () } => (), } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn enum_record_fields_out_of_order_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A { foo: bool, bar: () }, B, @@ -1764,89 +1763,89 @@ mod tests { Either::B => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_record_ellipsis_missing_arm() { - let content = r" - enum Either { - A { foo: bool, bar: bool }, - B, - } - fn test_fn() { - match Either::B { - Either::A { foo: true, .. } => (), - Either::B => (), - } - } - "; - - check_diagnostic(content); + check_diagnostic( + r" + enum Either { + A { foo: bool, bar: bool }, + B, + } + fn test_fn() { + match Either::B { + Either::A { foo: true, .. } => (), + Either::B => (), + } + } + ", + ); } #[test] fn enum_record_ellipsis_no_diagnostic() { - let content = r" - enum Either { - A { foo: bool, bar: bool }, - B, - } - fn test_fn() { - let a = Either::A { foo: true }; - match a { - Either::A { foo: true, .. } => (), - Either::A { foo: false, .. } => (), - Either::B => (), - } - } - "; - - check_no_diagnostic(content); + check_no_diagnostic( + r" + enum Either { + A { foo: bool, bar: bool }, + B, + } + fn test_fn() { + let a = Either::A { foo: true }; + match a { + Either::A { foo: true, .. } => (), + Either::A { foo: false, .. } => (), + Either::B => (), + } + } + ", + ); } #[test] fn enum_record_ellipsis_all_fields_missing_arm() { - let content = r" - enum Either { - A { foo: bool, bar: bool }, - B, - } - fn test_fn() { - let a = Either::B; - match a { - Either::A { .. } => (), - } - } - "; - - check_diagnostic(content); + check_diagnostic( + r" + enum Either { + A { foo: bool, bar: bool }, + B, + } + fn test_fn() { + let a = Either::B; + match a { + Either::A { .. } => (), + } + } + ", + ); } #[test] fn enum_record_ellipsis_all_fields_no_diagnostic() { - let content = r" - enum Either { - A { foo: bool, bar: bool }, - B, - } - fn test_fn() { - let a = Either::B; - match a { - Either::A { .. } => (), - Either::B => (), - } - } - "; - - check_no_diagnostic(content); + check_no_diagnostic( + r" + enum Either { + A { foo: bool, bar: bool }, + B, + } + fn test_fn() { + let a = Either::B; + match a { + Either::A { .. } => (), + Either::B => (), + } + } + ", + ); } #[test] fn enum_tuple_partial_ellipsis_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A(bool, bool, bool, bool), B, @@ -1860,14 +1859,14 @@ mod tests { Either::B => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_tuple_partial_ellipsis_2_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A(bool, bool, bool, bool), B, @@ -1881,14 +1880,14 @@ mod tests { Either::B => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_tuple_partial_ellipsis_missing_arm() { - let content = r" + check_diagnostic( + r" enum Either { A(bool, bool, bool, bool), B, @@ -1901,14 +1900,14 @@ mod tests { Either::B => {}, } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn enum_tuple_partial_ellipsis_2_missing_arm() { - let content = r" + check_diagnostic( + r" enum Either { A(bool, bool, bool, bool), B, @@ -1921,14 +1920,14 @@ mod tests { Either::B => {}, } } - "; - - check_diagnostic(content); + ", + ); } #[test] fn enum_tuple_ellipsis_no_diagnostic() { - let content = r" + check_no_diagnostic( + r" enum Either { A(bool, bool, bool, bool), B, @@ -1939,51 +1938,51 @@ mod tests { Either::B => {}, } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_never() { - let content = r" + check_no_diagnostic( + r" enum Never {} fn test_fn(never: Never) { match never {} } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn type_never() { - let content = r" + check_no_diagnostic( + r" fn test_fn(never: !) { match never {} } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn enum_never_ref() { - let content = r" + check_no_diagnostic( + r" enum Never {} fn test_fn(never: &Never) { match never {} } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn expr_diverges_missing_arm() { - let content = r" + check_no_diagnostic( + r" enum Either { A, B, @@ -1993,14 +1992,14 @@ mod tests { Either::A => (), } } - "; - - check_no_diagnostic(content); + ", + ); } #[test] fn or_pattern_panic() { - let content = r" + check_no_diagnostic( + r" pub enum Category { Infinity, Zero, @@ -2012,9 +2011,8 @@ mod tests { (_, Category::Zero | Category::Infinity) => {} } } - "; - - check_no_diagnostic(content); + ", + ); } } @@ -2034,23 +2032,26 @@ mod false_negatives { #[test] fn integers() { - let content = r" + // This is a false negative. + // We don't currently check integer exhaustiveness. + check_no_diagnostic( + r" fn test_fn() { match 5 { 10 => (), 11..20 => (), } } - "; - - // This is a false negative. - // We don't currently check integer exhaustiveness. - check_no_diagnostic(content); + ", + ); } #[test] fn internal_or() { - let content = r" + // This is a false negative. + // We do not currently handle patterns with internal `or`s. + check_no_diagnostic( + r" fn test_fn() { enum Either { A(bool), @@ -2060,16 +2061,18 @@ mod false_negatives { Either::A(true | false) => (), } } - "; - - // This is a false negative. - // We do not currently handle patterns with internal `or`s. - check_no_diagnostic(content); + ", + ); } #[test] fn expr_loop_missing_arm() { - let content = r" + // This is a false negative. + // We currently infer the type of `loop { break Foo::A }` to `!`, which + // causes us to skip the diagnostic since `Either::A` doesn't type check + // with `!`. + check_diagnostic( + r" enum Either { A, B, @@ -2079,48 +2082,46 @@ mod false_negatives { Either::A => (), } } - "; - - // This is a false negative. - // We currently infer the type of `loop { break Foo::A }` to `!`, which - // causes us to skip the diagnostic since `Either::A` doesn't type check - // with `!`. - check_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_with_ellipsis_at_end_missing_arm() { - let content = r" + // This is a false negative. + // We don't currently handle tuple patterns with ellipsis. + check_no_diagnostic( + r" fn test_fn() { match (false, true, false) { (false, ..) => {}, } } - "; - - // This is a false negative. - // We don't currently handle tuple patterns with ellipsis. - check_no_diagnostic(content); + ", + ); } #[test] fn tuple_of_bools_with_ellipsis_at_beginning_missing_arm() { - let content = r" + // This is a false negative. + // We don't currently handle tuple patterns with ellipsis. + check_no_diagnostic( + r" fn test_fn() { match (false, true, false) { (.., false) => {}, } } - "; - - // This is a false negative. - // We don't currently handle tuple patterns with ellipsis. - check_no_diagnostic(content); + ", + ); } #[test] fn struct_missing_arm() { - let content = r" + // This is a false negative. + // We don't currently handle structs. + check_no_diagnostic( + r" struct Foo { a: bool, } @@ -2129,10 +2130,7 @@ mod false_negatives { Foo { a: true } => {}, } } - "; - - // This is a false negative. - // We don't currently handle structs. - check_no_diagnostic(content); + ", + ); } } -- cgit v1.2.3