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
update readme (#21797)
[mono-project.git]
/
mcs
/
tests
/
test-899.cs
blob
2f8c9e57d37a75b2c34a4b786eefe4fe71f45275
1
using
System
;
2
3
class
Test
4
{
5
public static void
Main
()
6
{
7
object
o
;
8
lock
(
o
=
new object
())
9
{
10
Console
.
WriteLine
(
o
);
11
}
12
13
Console
.
WriteLine
(
o
);
14
}
15
}