Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-248.cs
1 using System;
2
3 public class Foo<T>
4 { }
5
6 class X
7 {
8         static bool Test (object o)
9         {
10                 return o is Foo<int> ? true : false;
11         }
12
13         public static void Main ()
14         { }
15 }