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
[interp] Reduce computation under calc_section mutex
[mono-project.git]
/
mcs
/
tests
/
test-789.cs
blob
5a8586333447241644e3379a4f47fa9db3c7e8e7
1
using
System
;
2
3
class
Program
4
{
5
public static void
Main
()
6
{
7
Action action
= () =>
Console
.
WriteLine
(
1
);
8
action
+=
null
;
9
action
=
null
+
action
;
10
action
=
action
+
null
;
11
action
();
12
}
13
}