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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0752.cs
blob
5a012cc34d19d2bdb8c58fbf30ed111329228b6d
1
// CS0752: `C.Foo(out int)': A partial method parameters cannot use `out' modifier
2
// Line: 7
3
4
5
public partial class
C
6
{
7
partial void
Foo
(
out int
i
)
8
{
9
i
=
8
;
10
}
11
}