mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 11:42:18 +00:00
15 lines
261 B
Text
15 lines
261 B
Text
|
fun main() {
|
||
|
beginCell()
|
||
|
.storeAddressNone()
|
||
|
.storeUint(3, 32)
|
||
|
.storeUnexisting()
|
||
|
.storeInt(1, 32)
|
||
|
.endCell();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr undefined symbol `storeUnexisting`
|
||
|
@stderr .storeUnexisting()
|
||
|
*/
|