14 lines
321 B
C#
14 lines
321 B
C#
|
// CS1574: XML comment on `Test' has cref attribute `Test.Foo(int)' that could not be resolved
|
||
|
// Line: 8
|
||
|
// Compiler options: -doc:dummy.xml -warnaserror -warn:1
|
||
|
|
||
|
using System;
|
||
|
|
||
|
/// <see cref="Test.Foo(int)"/> Test has Foo, but is property that has no args.
|
||
|
public class Test
|
||
|
{
|
||
|
string Foo {
|
||
|
get { return null; }
|
||
|
}
|
||
|
}
|