linux-packaging-mono/mcs/tests/gtest-optional-18.cs

17 lines
163 B
C#
Raw Normal View History

// Compiler options: -main:C
using System;
public class C
{
static void Test (decimal amt = 1)
{
}
public static int Main ()
{
Test ();
return 0;
}
}