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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs1502-12.cs
blob
ac3e383bfc871269418ce73afeea21fa862b2292
1
// CS1502: The best overloaded method match for `Global.Test1(int?)' has some invalid arguments
2
// Line: 8
3
4
using
System
;
5
6
class
Global
{
7
static void
Main
() {
8
Console
.
Write
(
Test1
((
decimal
?)
2
));
9
}
10
static string
Test1
(
int
?
value
) {
11
return
"ok"
;
12
}
13
}