This commit is contained in:
ProgramSnail 2023-08-14 11:20:36 +03:00
parent 1f3a477948
commit 1357783074

View file

@ -247,7 +247,7 @@ literals_test = {
%null_literal := null; %null_literal := null;
} }
array_argument_test 'x 'y : [[ Int ]] = do_something; array_argument_test 'x : [[ Int ]] = do_something;
functional_arguments_test 'x 'y : (( Int -> Int )) (( Float <- Float -> Float )) = do_something; functional_arguments_test 'x 'y : (( Int -> Int )) (( Float <- Float -> Float )) = do_something;
@ -1478,7 +1478,6 @@ functional_arguments_test 'x 'y : (( Int -> Int )) (( Float <- Float -> Float ))
(function_definition (function_definition
(simple_name_identifier) (simple_name_identifier)
(argument_name_identifier) (argument_name_identifier)
(argument_name_identifier)
(array_type (array_type
(simple_type (simple_type
(simple_type_identifier))) (simple_type_identifier)))