blob: 90d40d51b928e580f5dc098ba6c843eaf3ccd59a (
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 ('summary' is expected Line 3, position 4.)
// Line: 12
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror
using System;
namespace Testing
{
/// <summary>
/// incorrect markup comment for interface
/// </incorrect>
public interface InterfaceTest2
{
}
}
|