Merge pull request #2998 from lateralusX/jlorenss/win-x64-full-aot-support
[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 }