Added test for when lamda arrow is on new line

This commit is contained in:
Chad Stearns 2019-12-14 22:24:31 -05:00
parent dbea3324a3
commit 7714639a45

View file

@ -500,6 +500,15 @@ mod test_format {
identity 42
"#
));
expr_formats_same(indoc!(
r#"
identity = \a
-> a
identity 42
"#
));
}
// RECORD LITERALS