Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-810.cs
1 // Compiler options: -r:test-810-lib.dll
2
3 public class C
4 {
5         public IA Test (IC b)
6         {
7                 IA a = b;
8                 return a;
9         }
10         
11         public static void Main ()
12         {
13         }
14 }