mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
10 lines
193 B
Text
10 lines
193 B
Text
|
fun main() {
|
||
|
var t = createEmptyTuple();
|
||
|
t.0 = (1, 2);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr can not put `(int, int)` into a tuple, because it occupies 2 stack slots in TVM, not 1
|
||
|
*/
|