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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
gtest-291.cs
blob
81319315e8720a4c40cd548e55fe62ac8edf6323
1
using
System
;
2
3
class
Global
{
4
static void
Main
() {
5
Console
.
Write
(
Test2
((
int
?)
2
));
6
}
7
static string
Test2
(
decimal
?
value
) {
8
return
"ok"
;
9
}
10
}