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
/
gtest-138.cs
blob
c89a291ae69e101e389c32ade00b6a594c1d6c6d
1
using
System
;
2
3
class
X
4
{
5
public static void
Main
()
6
{
7
int
?
a
=
4
;
8
long
b
=
5
;
9
long
?
c
=
a
*
b
;
10
Console
.
WriteLine
(
c
);
11
}
12
}