nvim-treesitter/tests/indent/tiger/functions.tig

15 lines
151 B
Text
Raw Normal View History

2022-06-14 17:30:49 +02:00
primitive long_parameter_list(
a: int,
b: string,
c: type
)
function f() =
(
long_parameter_list(
1,
"2",
nil
)
)