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
* MSBuild.cs (Execute): Don't share target output items,
[mcs.git]
/
errors
/
cs0685.cs
blob
666f1da33918963163fa038c0ec7b56e723d45c7
1
// cs0685.cs: Conditional method `MainClass.Method(out int)' cannot have an out parameter
2
// Line: 6
3
4
class
MainClass
{
5
[
System
.
Diagnostics
.
Conditional
(
"DEBUG"
)]
6
public void
Method
(
out int
o
)
7
{
8
o
=
3
;
9
}
10
}