Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-745.cs
1 using System;
2
3 interface ITest
4 {
5 }
6
7 class C : ITest
8 {
9         public static void Main ()
10         {
11                 ITest it = new C ();
12                 it.GetType ();
13
14                 IConvertible ic = 1 as IConvertible;
15                 var t = ic.GetType ();
16         }
17 }