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
cosmetic
[mcs.git]
/
tests
/
test-524.cs
blob
b9a440fd75630a7e9513bbb17abf1afb13c47ff5
1
using
System
;
2
public class
Foo
{
3
public static int
Main
()
4
{
5
try
{
6
lock
(
null
) {
7
}
8
}
9
catch
(
ArgumentNullException
) {
10
return
0
;
11
}
12
return
1
;
13
}
14
}