X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs1570.cs;h=c809e4389081210dc9125d0ec19a0c24fadc2c29;hb=d8be0899640d040272eb77b8749275a41a3d103a;hp=4f7e6f4d783bd7161e551e2b335ada737dd568a6;hpb=a883b630bfe06753c768c7a2fe0304575eebc21e;p=mono.git diff --git a/mcs/errors/cs1570.cs b/mcs/errors/cs1570.cs old mode 100755 new mode 100644 index 4f7e6f4d783..c809e438908 --- a/mcs/errors/cs1570.cs +++ b/mcs/errors/cs1570.cs @@ -1,32 +1,16 @@ +// CS1570: XML documentation comment on `Testing.Test2' is not well-formed XML markup (The 'summary' start tag on line 1 position 3 does not match the end tag of 'incorrect'. Line 3, position 4.) +// Line: 12 // Compiler options: -doc:dummy.xml -warnaserror -warn:1 + using System; namespace Testing { - /// - /// comment on class - /// - public class Test - { - public static void Main () - { - } - } - /// /// Incorrect comment markup. /// public class Test2 { } - - /** - - another Java-style documentation style - - */ - public class Test3 - { - } }