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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-481.cs
blob
68d5a113974c194ae4566fec59c9e76e56377ae1
1
using
System
;
2
public delegate void
TestDelegate
(
out int
a
);
3
4
public static class
TestClass
{
5
public static int
Main
() {
6
TestDelegate out_delegate
=
delegate
(
out int
a
) {
7
a
=
0
;
8
};
9
10
int
x
=
5
;
11
out_delegate
(
out
x
);
12
return
x
;
13
}
14
}