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
2009-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-371.cs
blob
ae7d46df6d6efb14a257a70ea501789bf34ba08a
1
public class
X
2
{
3
public
X
(
out bool
hello
)
4
{
5
hello
=
true
;
6
}
7
8
static void
Main
()
9
{ }
10
}
11
12
public class
Y
:
X
13
{
14
public
Y
(
out bool
hello
)
15
:
base
(
out
hello
)
16
{ }
17
}