[runtime] Don't insta-fail when a faulty COM type is encountered. (#5616)
[mono.git] / mcs / tests / test-267.cs
1 using System;
2  
3 public class X
4 {
5     [CLSCompliant (false)]
6     public static string Text ()
7     {
8         return "PASS";
9     }
10    
11     public static int Main ()
12     {
13         Console.WriteLine (Text ());
14         return 0;
15     }
16 }