Add values/expressions indent tests

This commit is contained in:
Bruno BELANYI 2022-06-13 11:18:36 +02:00
parent 59db3f195b
commit 964c9a685d
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,24 @@
let
type array_of_int = array of int
var a :=
"a string"
in
array[
12
]
;
array_of_int[
27
]
of
42
;
record {
a = 1,
b = "2",
c = nil
}
end