[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / test-62.cs
blob340f40f4de18d8be199a44903633ff069c3626d1
1 //
2 // This test just makes sure that we can typecast to
3 // array types, as this was introduced later into the
4 // grammar.
5 //
7 class X {
9 X [] GetX ()
11 return (X []) null;
14 int [] getInt ()
16 return (int []) null;
19 int [,,] getMoreInt ()
21 return (int [,,]) null;
24 public static int Main ()
26 return 0;