From: Marek Safar Date: Fri, 26 Mar 2010 14:36:40 +0000 (-0000) Subject: New test. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=69ff00a92eb84a7251a132a451c7a98159b3ef13;p=mono.git New test. svn path=/trunk/mcs/; revision=154276 --- diff --git a/mcs/tests/test-745.cs b/mcs/tests/test-745.cs new file mode 100644 index 00000000000..73a8c03bc6f --- /dev/null +++ b/mcs/tests/test-745.cs @@ -0,0 +1,17 @@ +using System; + +interface ITest +{ +} + +class C : ITest +{ + public static void Main () + { + ITest it = new C (); + it.GetType (); + + IConvertible ic = 1 as IConvertible; + var t = ic.GetType (); + } +}