* TextBoxBase.cs: You can still change the selected text on a
[mono-project.git] / mcs / 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 { }