Updated with review feedback.
[mono.git] / mcs / tests / gtest-named-06.cs
1 // parser test
2
3 class X
4 {
5         public static int T1 (int seconds)
6         {
7                 return T1_Foo (value: seconds * 1000);
8         }
9
10         public static int T1_Foo (int value = 0)
11         {
12                 return value;
13         }
14
15         public static void Main ()
16         {
17         }
18 }