[runtime] Don't insta-fail when a faulty COM type is encountered. (#5616)
[mono.git] / mcs / tests / test-441.cs
1 // Compiler options: /warnaserror
2
3 using System;
4 class Test
5 {
6         static ulong value = 0;
7
8         public static void Main ()
9         {
10                 if (value < 9223372036854775809)
11                         Console.WriteLine ();
12         }
13 }
14