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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs1741-2.cs
blob
c773725ff86c7130378d512432756f053a0503da
1
// CS1741: Cannot specify a default value for the `out' parameter
2
// Line: 6
3
4
interface
I
5
{
6
void
Test
(
out bool
a
=
true
);
7
}
8