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:
parent
c74e49d467
commit
a174f858be
8 changed files with 85 additions and 38 deletions
|
@ -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);
|
||||
}
|
||||
{-
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue