blob: 75c4f86ee49f90624b52a7297b27501d882ca815 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// CS1574: XML comment on `Test' has cref attribute `Goo' that could not be resolved
// Line: 8
// Compiler options: -doc:dummy.xml -warnaserror -warn:1
using System;
/// <see cref="Goo"/> ... does not exist
public class Test
{
string Foo {
get { return null; }
}
}
class X
{
static void Main ()
{ }
}
|