Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0220-4.cs
1 // CS0220: The operation overflows at compile time in checked mode
2 // Line: 10
3 // Compiler options: -unsafe
4
5 class TestClass
6 {
7         public unsafe static void Main ()
8         {
9                 int* arr = null;
10                 var i = arr[long.MaxValue];
11         }
12 }