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