Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2010-03-26 17:36:40 +0300
committerMarek Safar <marek.safar@gmail.com>2010-03-26 17:36:40 +0300
commit69ff00a92eb84a7251a132a451c7a98159b3ef13 (patch)
tree5c6262854e7f10ceac08dfd16eecbed9fd61c5cb /mcs/tests/test-745.cs
parent40564594bb4127814144aba0cfda24c7146f3e2e (diff)
New test.
svn path=/trunk/mcs/; revision=154276
Diffstat (limited to 'mcs/tests/test-745.cs')
-rw-r--r--mcs/tests/test-745.cs17
1 files changed, 17 insertions, 0 deletions
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 ();
+ }
+}