leo/tests/parser/functions/annotated_arg_not_ident_int.leo
2022-01-28 10:34:02 -08:00

15 lines
152 B
Plaintext

/*
namespace: Parse
expectation: Fail
*/
@foo(?, bar, ?)
function x() {
return ();
}
@context // recovery witness
function x() {
return ();
}