blob: b0d6cf7d5eb8b61c4f91e778d408d3eaa78f9e8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS1570: XML documentation comment on `Testing.InterfaceTest2' is not well-formed XML markup (The 'summary' start tag on line 1 position 2 does not match the end tag of 'incorrect'. Line 3, position 3.)
// Line: 12
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror
using System;
namespace Testing
{
/// <summary>
/// incorrect markup comment for interface
/// </incorrect>
public interface InterfaceTest2
{
}
}
|