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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-772.cs
blob
031d81d7446adb64f41776139fa1d1c352bd53ab
1
using
System
;
2
3
public class
Test
4
{
5
public static void
Main
()
6
{
7
Foo fu
=
new
Foo
(
null
);
8
}
9
}
10
11
class
Foo
12
{
13
public
Foo
(
object
o
)
14
{
15
throw new
ApplicationException
(
"wrong ctor"
);
16
}
17
18
public
Foo
(
string
s
,
params object
[]
args
)
19
{
20
}
21
}