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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs1580.cs
blob
b40fe7fda652df4058e31f52a4726078a34d6400
1
// CS1580: Invalid type for parameter `1' in XML comment cref attribute `Foo(x)'
2
// Line: 7
3
// Compiler options: -doc:dummy.xml -warnaserror -warn:1
4
5
using
System
;
6
/// <seealso cref="Foo(x)"/>
7
public class
Test
8
{
9
int
Foo
()
10
{
11
return
0
;
12
}
13
}