repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1574-3.cs
blob
1ebf0a5e948cc3ec5113fa7589eac48b9c858714
1
// cs1574-3.cs: XML comment on `Test' has cref attribute `Test.Foo(int)' that could not be resolved
2
// Line: 8
3
// Compiler options: -doc:dummy.xml -warnaserror -warn:1
4
5
using
System
;
6
7
/// <see cref="Test.Foo(int)"/> Test has Foo, but is property that has no args.
8
public class
Test
9
{
10
string
Foo
{
11
get
{ return null; }
12
}
13
}