[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-248.cs
blobb1a229e569d95deff1c9b6431fd9d92fcff2c1c6
1 using System;
3 public class Foo<T>
4 { }
6 class X
8 static bool Test (object o)
10 return o is Foo<int> ? true : false;
13 public static void Main ()
14 { }