mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
13 lines
156 B
Text
13 lines
156 B
Text
|
fun main() {
|
||
|
try {
|
||
|
|
||
|
} catch(int, arg) {}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr expected identifier, got `int`
|
||
|
@stderr catch(int
|
||
|
*/
|