blob: e9b2de5b5c5b9364abd1fec159e56cca3073f6d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// parser test
class X
{
public static int T1 (int seconds)
{
return T1_Foo (value: seconds * 1000);
}
public static int T1_Foo (int value = 0)
{
return value;
}
public static void Main ()
{
}
}
|