remove comment inbetween signature and definition in test

This commit is contained in:
Folkert 2020-11-09 02:02:11 +01:00
parent 4868c0bd25
commit b044a0b8a8

View file

@ -2523,9 +2523,7 @@ mod solve_uniq_expr {
r#"
Model : { foo : Int, bar : Int }
# extract : { foo : Int, bar : Int } -> Int
extract : Model -> Int
# extract = \r -> r.foo + r.bar
extract = \{foo, bar} -> foo + bar
extract