Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / dtest-023.cs
1 struct S
2 {
3 }
4
5 class C
6 {
7         public static int Main ()
8         {
9                 dynamic d = new S ();
10                 bool b = d is S;
11                 if (!b)
12                         return 1;
13                 
14                 return 0;
15         }
16 }