From: Eberhard Beilharz Date: Fri, 21 Mar 2014 17:08:45 +0000 (+0100) Subject: [mcs] Adding unit test for #18511 X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=88031ccb8d5773636e22c79bbd5b262ac030ffb8;p=mono.git [mcs] Adding unit test for #18511 --- diff --git a/mcs/tests/test-xml-069-ref.xml b/mcs/tests/test-xml-069-ref.xml new file mode 100644 index 00000000000..68b9908b34d --- /dev/null +++ b/mcs/tests/test-xml-069-ref.xml @@ -0,0 +1,25 @@ + + + + test-xml-069 + + + + + + + + + + The first entry + + + + + + + + + + + diff --git a/mcs/tests/test-xml-069.cs b/mcs/tests/test-xml-069.cs new file mode 100644 index 00000000000..e5f1f2ec219 --- /dev/null +++ b/mcs/tests/test-xml-069.cs @@ -0,0 +1,27 @@ +// Compiler options: -doc:xml-069.xml + +using System; + +namespace XmlComments +{ + /// + class Program + { + /// + private enum MyEnum + { + /// The first entry + One, + } + + /// + /// + /// + /// + /// + /// + static void Main(string[] args) + { + } + } +}