blob: 0b11a7aae39f43108f53c6bfdacad97767d79c61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// CS1590: Invalid XML `include' element. Missing `file' attribute
// Line: 16
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror
namespace Testing
{
/// comment
public class Test
{
/// comment
public static void Main ()
{
}
/// <include path='/foo/bar' />
public void Bar (int x)
{
}
}
}
|