add ISafeSerializationData
[mcs.git] / tests / gtest-238-lib.cs
blob4ff5d3342dbf19cebf32208f0b347ba1a9199713
1 // Compiler options: /t:library
2 using System;
4 public class Foo<T>
6 public int Test (int index)
8 Console.WriteLine ("Test 1: {0}", index);
9 return 1;
12 public int Test (T index)
14 Console.WriteLine ("Test 2: {0}", index);
15 return 2;