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
/
gtest-optional-32.cs
blob
4ca3a6097d5d7690ceb66f5590a8c834633a236f
1
using
System
;
2
3
abstract class
A
4
{
5
public abstract int
[]
Foo
(
params int
[]
args
);
6
}
7
8
class
B
:
A
9
{
10
public override int
[]
Foo
(
int
[]
args
=
null
)
11
{
12
return
args
;
13
}
14
15
static int
Main
()
16
{
17
var
b
=
new
B
();
18
if
(
b
.
Foo
().
Length
!=
0
)
19
return
1
;
20
21
return
0
;
22
}
23
}