2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-62.cs
blob550956009e0e713be4e3459c0ada151d1c74735d
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 static int Main ()
26 return 0;