[runtime] Don't insta-fail when a faulty COM type is encountered. (#5616)
[mono.git] / mcs / tests / gtest-341-lib.cs
1 // Compiler options: -target:library
2
3 using System;
4 using System.Runtime.CompilerServices;
5
6 public interface IA {
7         [SpecialName]
8         int GetLength ();
9 }