doh, fix build
[mono.git] / mcs / tests / gtest-278-2-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4
5 public class C
6 {
7         public class CC {}
8
9         public static string Print ()
10         {
11                 return typeof (C).FullName;
12         }
13 }
14
15 public class D
16 {
17         public static string Print ()
18         {
19                 return typeof (D).FullName;
20         }
21 }