mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-15 04:32:21 +00:00
9 lines
178 B
Text
9 lines
178 B
Text
|
fun load32(self: slice): int {
|
||
|
return self.loadUint(32);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr modifying `self` (call a mutating method), which is immutable by default
|
||
|
*/
|