mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
12 lines
232 B
Text
12 lines
232 B
Text
|
fun main() {
|
||
|
var functions = (beginCell, beginCell);
|
||
|
var b = functions.1(); // ok
|
||
|
var c = functions.2(); // error
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr invalid tensor index, expected 0..1
|
||
|
@stderr functions.2()
|
||
|
*/
|