Merge pull request #3522 from henricm/fix-csharp-compiler-path-windows
[mono.git] / mono / tests / verifier / valid_array_method.cs
1 using System;
2
3 class D {
4     static int Main ()
5     {
6         int[] ar = new int[1];
7                 return ar.GetLength (0) - 1;
8     }
9 }