[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / gtest-optional-18.cs
blob77c46633f4b1e4100562702104608b31e488d60d
1 // Compiler options: -main:C
3 using System;
5 public class C
7 static void Test (decimal amt = 1)
11 public static int Main ()
13 Test ();
14 return 0;