1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-15 04:32:21 +00:00
ton/tolk-tester/tests/invalid-call-7.tolk

15 lines
282 B
Text
Raw Normal View History

fun main() {
beginCell()
.storeAddressNone()
.storeUint(3, 32)
.storeUnexisting()
.storeInt(1, 32)
.endCell();
}
/**
@compilation_should_fail
@stderr non-existing method `storeUnexisting` of type `builder`
@stderr .storeUnexisting()
*/