[runtime] Don't insta-fail when a faulty COM type is encountered. (#5616)
[mono.git] / mcs / tests / gtest-exmethod-02-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4
5 public static class Test
6 {
7         public static string Test_1 (this string s)
8         {
9                 return ":";
10         }
11 }