1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-13 11:42:18 +00:00
ton/crypto/func/auto-tests/tests/method_id.fc
2022-09-23 16:27:18 +03:00

12 lines
280 B
Text

int foo1() method_id(1) { return 111; }
int foo2() method_id(3) { return 222; }
int foo3() method_id(10) { return 333; }
int main() { return 999; }
{-
method_id | in | out
TESTCASE | 1 | | 111
TESTCASE | 3 | | 222
TESTCASE | 10 | | 333
TESTCASE | 0 | | 999
-}