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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
gtest-291.cs
blob
65d90c8a1a815e2ecb609745d0232c6ce05d5938
1
using
System
;
2
3
class
Global
{
4
public static void
Main
() {
5
Console
.
Write
(
Test2
((
int
?)
2
));
6
}
7
static string
Test2
(
decimal
?
value
) {
8
return
"ok"
;
9
}
10
}