Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[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 }