[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / test-933.cs
blob2f076ebd25426df4ed08dbc65d171c985b7e8761
1 using System;
3 class X
5 static int Foo (params X[] p)
7 return 1;
10 static int Foo (object p)
12 return 0;
15 static int Main ()
17 if (Foo ((X[]) null) != 1)
18 return 1;
20 return 0;