mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
10 lines
157 B
Text
10 lines
157 B
Text
|
fun failAssignToInvalidTupleIndex() {
|
||
|
var ab = [1, 2];
|
||
|
ab.100500 = 5;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr invalid tuple index, expected 0..1
|
||
|
*/
|