Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-646-lib.cs
1 // Compiler options: -t:library
2
3 public class CompilerBug<T>
4 {
5         public int Foo (CompilerBug<T> p1, CompilerBug<T> p2)
6         {
7                 return 1;
8         }
9
10         public int Foo (CompilerBug<object> p1, CompilerBug<T> p2)
11         {
12                 return 2;
13         }
14 }