Add functions indent tests

This commit is contained in:
Bruno BELANYI 2022-06-13 11:09:00 +02:00
parent e3b70d8880
commit 59db3f195b
2 changed files with 25 additions and 0 deletions

14
test/indent/functions.tig Normal file
View file

@ -0,0 +1,14 @@
primitive long_parameter_list(
a: int,
b: string,
c: type
)
function f() =
(
long_parameter_list(
1,
"2",
nil
)
)