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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs1574-6.cs
blob
1ebfb6695e8bfdb9a76758c23b531f985b4edb1b
1
// CS1574: 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