Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-238-lib.cs
1 // Compiler options: /t:library
2 using System;
3
4 public class Foo<T>
5 {
6         public int Test (int index)
7         {
8                 Console.WriteLine ("Test 1: {0}", index);
9                 return 1;
10         }
11
12         public int Test (T index)
13         {
14                 Console.WriteLine ("Test 2: {0}", index);
15                 return 2;
16         }
17 }