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-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs1574-6.cs
blob
8d303518c64ddf6b6f7f2250fae479d443524941
1
// cs1574-6.cs: XML comment on `Test' has cref attribute `MyDelegate(int)' that could not be resolved
2
// Line: 8
3
// Compiler options: -doc:dummy.xml -warnaserror -warn:1
4
5
/// <summary>
6
/// <see cref="MyDelegate(int)" />
7
/// </summary>
8
public class
Test
{
9
/// <summary>
10
/// whatever
11
/// </summary>
12
public delegate void
MyDelegate
(
int
i
);
13
}
14