mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 11:42:18 +00:00
10 lines
167 B
Text
10 lines
167 B
Text
|
fun main(): int {
|
||
|
var (a: int, b: int) = (10, 20);
|
||
|
var (a, b: int) = (10, 20);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr redeclaration of local variable `a`
|
||
|
*/
|