mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 11:42:18 +00:00
13 lines
146 B
Text
13 lines
146 B
Text
|
fun eq(x: int): int {
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
fun main(x: int): int {
|
||
|
return eq x;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr expected `;`, got `x`
|
||
|
*/
|