Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-165-lib.cs
1 // Compiler options: -t:library
2
3 public class A<T>
4 {
5         public int this [T arg] {
6                 get {
7                         return 1;
8                 }
9         }
10         
11         public int this [string arg] {
12                 get {
13                         return 2;
14                 }
15         }
16 }