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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1574-5.cs
blob
dff8f0f66e9dcea00584fa45dce84648661a6906
1
// cs1574-5.cs: XML comment on `Test' has cref attribute `Goo' 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="Goo"/> ... does not exist
8
public class
Test
9
{
10
string
Foo
{
11
get
{ return null; }
12
}
13
}
14
15
class
X
16
{
17
static void
Main
()
18
{ }
19
}