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:
Diffstat (limited to 'mcs/tests/gtest-xml-1.cs')
-rw-r--r--mcs/tests/gtest-xml-1.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/mcs/tests/gtest-xml-1.cs b/mcs/tests/gtest-xml-1.cs
deleted file mode 100644
index d2a2dc460b4..00000000000
--- a/mcs/tests/gtest-xml-1.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-// Compiler options: -doc:gxml-1.xml
-using System;
-
-///<summary>This file throws an error when compiled with XML documentation</summary>
-public class GenericClass <gT>
-{
- gT m_data;
-
- ///<summary>This line caused bug #77183</summary>
- public GenericClass (gT Data)
- {
- m_data = Data;
- }
-}
-
-class Foo
-{
- public static void Main () {}
-}