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
/
cs1573.cs
blob
e374512b4d941adad0e36dee3d3ff2b5c51d7d4b
1
// cs1573.cs: Parameter `j' has no matching param tag in the XML comment for `Testing.Test.Baz(int, int)'
2
// Line: 10
3
// Compiler options: -doc:dummy.xml -warn:4 -warnaserror
4
5
namespace
Testing
6
{
7
public class
Test
8
{
9
/// <param name='i'>correct</param>
10
public void
Baz
(
int
i
,
int
j
) {}
11
}
12
}