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
2009-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs1502-3.cs
blob
961c1ca1811edb03143af5d65b54d67f5ed6b91c
1
// cs1502-3.cs: The best overloaded method match for `T.Blah(out int)' has some invalid arguments
2
// Line: 11
3
4
using
System
;
5
6
class
T
{
7
static void
Blah
(
out int
g
)
{ g = 0; }
8
9
static int
Main
(
string
[]
args
) {
10
IntPtr g
;
11
Blah
(
out
g
);
12
return
(
int
)
g
;
13
}
14
}