mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 15:41:36 +03:00
25 lines
212 B
Plaintext
25 lines
212 B
Plaintext
/*
|
|
namespace: Parse
|
|
expectation: Pass
|
|
*/
|
|
|
|
@test
|
|
function a() {
|
|
return ();
|
|
}
|
|
|
|
@test(test)
|
|
function b() {
|
|
return ();
|
|
}
|
|
|
|
@test(test,)
|
|
function c() {
|
|
return ();
|
|
}
|
|
|
|
@test()
|
|
function d() {
|
|
return ();
|
|
}
|