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-04-29 18:58:11 +0400
committerMarek Safar <marek.safar@gmail.com>2010-04-29 18:58:11 +0400
commitcfc8a9cbc12bfea512c75671bb638f096e253655 (patch)
treed61ec4929625f9b33e111fa5bd17dfff1411a70f /mcs/tests/gtest-502.cs
parent73e39bb0b7b3e7306f938eb7c7174afef96d1f7c (diff)
New tests.
svn path=/trunk/mcs/; revision=156439
Diffstat (limited to 'mcs/tests/gtest-502.cs')
-rw-r--r--mcs/tests/gtest-502.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/mcs/tests/gtest-502.cs b/mcs/tests/gtest-502.cs
new file mode 100644
index 00000000000..482b737e304
--- /dev/null
+++ b/mcs/tests/gtest-502.cs
@@ -0,0 +1,24 @@
+using System;
+
+class C<T>
+{
+ public class Foo<U>
+ {
+ }
+
+ public class Simple
+ {
+ }
+
+ static Type foo = typeof (Foo<>);
+ static Type simple = typeof (Simple);
+}
+
+class M
+{
+ public static void Main ()
+ {
+ new C<int> ();
+ }
+}
+