Merge pull request #5439 from alexrp/master
[mono.git] / mcs / tests / gtest-optional-18.cs
1 // Compiler options: -main:C
2
3 using System;
4
5 public class C
6 {
7         static void Test (decimal amt = 1)
8         {
9         }
10
11         public static int Main ()
12         {
13                 Test ();
14                 return 0;
15         }
16 }