Add values/expressions indent tests
This commit is contained in:
parent
59db3f195b
commit
964c9a685d
2 changed files with 37 additions and 0 deletions
24
test/indent/values-and-expressions.tig
Normal file
24
test/indent/values-and-expressions.tig
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue