We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36f6f02 commit eac2b42Copy full SHA for eac2b42
crates/indexing/tests/indexing.rs
@@ -68,7 +68,7 @@ fn well_formed_module() {
68
writeln!(snapshot, "eq: {:?}", eq).unwrap();
69
writeln!(snapshot, "eq_int: {:?}", eq_int).unwrap();
70
writeln!(snapshot, "identity: {:?}", identity).unwrap();
71
- writeln!(snapshot, "identity_int: {:?}", identity_int).unwrap();
+ writeln!(snapshot, "identity_int: {:?}", identity_int).unwrap();
72
writeln!(snapshot, "prim_eq_int: {:?}", prim_eq_int).unwrap();
73
writeln!(snapshot, "functor: {:?}", functor).unwrap();
74
writeln!(snapshot, "eq_identity: {:?}", eq_identity).unwrap();
@@ -171,10 +171,7 @@ fn type_non_consecutive() {
171
172
#[test]
173
fn type_late_signature() {
174
- let (_, _, errors) = index([
175
- "data Maybe a = Just a | Nothing",
176
- "data Maybe :: Type -> Type",
177
- ]);
+ let (_, _, errors) = index(["data Maybe a = Just a | Nothing", "data Maybe :: Type -> Type"]);
178
insta::assert_debug_snapshot!(errors);
179
}
180
0 commit comments