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:
authorAtsushi Eno <atsushieno@gmail.com>2005-04-17 16:39:24 +0400
committerAtsushi Eno <atsushieno@gmail.com>2005-04-17 16:39:24 +0400
commitdc8e09188d98d1011816c3703c3053ec894356ea (patch)
treeb4f4151b22cd50a38934b382ae45b0fa7aac97a3 /mcs/errors/cs1574-6.cs
parentf73f8ef2daa07ca5a5a1b443aa238882c5683f03 (diff)
2005-04-17 Atsushi Enomoto <atsushi@ximian.com>
* cs-1574-6.cs, cs-0419.cs : added new tests (bug #71603 and #71605). * xml-037.cs, xml-037-ref.xml, xml-038.cs, xml-038-ref.xml : added new tests for bug #74633. svn path=/trunk/mcs/; revision=43144
Diffstat (limited to 'mcs/errors/cs1574-6.cs')
-rw-r--r--mcs/errors/cs1574-6.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/errors/cs1574-6.cs b/mcs/errors/cs1574-6.cs
new file mode 100644
index 00000000000..133cae7b165
--- /dev/null
+++ b/mcs/errors/cs1574-6.cs
@@ -0,0 +1,11 @@
+// Compiler options: -doc:dummy.xml -warnaserror -warn:1
+/// <summary>
+/// <see cref="MyDelegate(int)" />
+/// </summary>
+public class Test {
+ /// <summary>
+ /// whatever
+ /// </summary>
+ public delegate void MyDelegate(int i);
+}
+