codeowners update
[mono.git] / mcs / tests / gtest-166-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4
5 public class TestClass
6 {
7         public class B : A<Nested>
8         {
9         }
10         
11         public abstract class A<T>
12         {
13                 public static Comparison<A<T>> Compare;
14         }
15         
16         public class Nested
17         {
18         }
19 }