2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / tests / gtest-117.cs
blob71dc3b8cd3d9bdb0afa8de23b3580e065af5de89
1 using System;
3 public interface IFoo<T>
4 { }
6 public class Foo<T>
8 public static bool Test (T x)
10 return x is IFoo<T>;
14 class X
16 static void Main ()
18 Foo<int>.Test (3);