repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs1574-3.cs
blob
1cfeec32a146b0c6b034566828e18dbb1a873b9e
1
// CS1574: 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
}