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>2008-02-05 13:51:36 +0300
committerMarek Safar <marek.safar@gmail.com>2008-02-05 13:51:36 +0300
commitbf40dfd0a0552e62e337d3660c11b21230216673 (patch)
tree11a6d71e07389f6c87f782d20a97b18b58b73401 /mcs/tests/gtest-368.cs
parent8ba8ba5f10a6849da227079f11fdc82124f80950 (diff)
2008-02-05 Marek Safar <marek.safar@gmail.com>
A test for bug #358374 svn path=/trunk/mcs/; revision=94866
Diffstat (limited to 'mcs/tests/gtest-368.cs')
-rw-r--r--mcs/tests/gtest-368.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/gtest-368.cs b/mcs/tests/gtest-368.cs
new file mode 100644
index 00000000000..9ad2a27e954
--- /dev/null
+++ b/mcs/tests/gtest-368.cs
@@ -0,0 +1,15 @@
+class C<T>
+{
+ class D {}
+
+ C(D d) {}
+ public C() {}
+}
+
+
+class M
+{
+ public static void Main ()
+ {
+ }
+}