mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
9 lines
177 B
Text
9 lines
177 B
Text
|
fun main(cs: slice) {
|
||
|
return loadInt(cs, 32);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr `loadInt` is a mutating method; consider calling `cs.loadInt()`, not `loadInt(cs)`
|
||
|
*/
|