mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
21 lines
213 B
Plaintext
21 lines
213 B
Plaintext
/*
|
|
namespace: Parse
|
|
expectation: Fail
|
|
*/
|
|
|
|
@foo(?, bar, ?)
|
|
function x() {
|
|
return ();
|
|
}
|
|
|
|
@bar(123) // ints not vali
|
|
function x() {
|
|
return ();
|
|
}
|
|
|
|
|
|
@context // recovery witness
|
|
function x() {
|
|
return ();
|
|
}
|