add ISafeSerializationData
[mcs.git] / tests / gtest-248.cs
blob4f9389f565d39db7ffb8e5aab261c7867da93a11
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 static void Main ()
14 { }