mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
12 lines
141 B
Text
12 lines
141 B
Text
|
global gVar: int;
|
||
|
|
||
|
fun main() {
|
||
|
var x = gVar<int>;
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr generic T not expected here
|
||
|
*/
|