1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

[FunC] Apply camelCase to some tests to ensure code_hash remains unchanged

In auto-tests, @code_hash controls bytecode stability.
In legacy tests, expected hashes are specified in a separate file.
This commit is contained in:
Aleksandr Kirsanov 2024-04-27 19:50:51 +05:00
parent c74e49d467
commit a174f858be
No known key found for this signature in database
GPG key ID: B758BBAA01FFB3D3
8 changed files with 85 additions and 38 deletions

View file

@ -17,8 +17,11 @@ int foo(int y) {
}
return (x + 1, y);
}
(int,int) bar2(int x, int y) {
return bar(x, y);
}
(int, int) main(int x, int y) {
(x, y) = bar(x, y);
(x, y) = bar2(x, y);
return (x, y * 10);
}
{-