Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / gtest-641-lib.cs
1 // Compiler options: -t:library
2
3 public class Foo<T>
4 {
5         public class Bar
6         {
7                 public class FooBar : System.IEquatable<FooBar>
8                 {
9                         public bool Equals(FooBar a)
10                         {
11                                 return true;
12                         }
13                 }
14         }
15 }