mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 11:42:18 +00:00
19 lines
296 B
Text
19 lines
296 B
Text
int foo(int x) inline method_id(1) {
|
|
if (x == 1) {
|
|
return 111;
|
|
} else {
|
|
x *= 2;
|
|
}
|
|
return x + 1;
|
|
}
|
|
(int, int) main(int x) {
|
|
return (foo(x), 222);
|
|
}
|
|
|
|
{-
|
|
method_id | in | out
|
|
TESTCASE | 1 | 1 | 111
|
|
TESTCASE | 1 | 3 | 7
|
|
TESTCASE | 0 | 1 | 111 222
|
|
TESTCASE | 0 | 3 | 7 222
|
|
-}
|