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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs1502-13.cs
blob
f85564b9ac739def2b6d6e040253cbfd2e3fc448
1
// CS1502: 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
}