// cs1574.cs: XML comment on 'Test' has cref attribute 'Test.Foo(int)' that could not be resolved in 'Test'. // Line: 8 // Compiler options: -doc:dummy.xml -warnaserror -warn:1 using System; /// Test has Foo, but is property that has no args. public class Test { string Foo { get { return null; } } }