2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-745.cs
blob73a8c03bc6f365afb931916c4ef46ce6e60c5fee
1 using System;
3 interface ITest
7 class C : ITest
9 public static void Main ()
11 ITest it = new C ();
12 it.GetType ();
14 IConvertible ic = 1 as IConvertible;
15 var t = ic.GetType ();