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-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1502.cs
blob
d661b4bb5b66f4376e7c114d9836efc10bb85696
1
// cs1502.cs: The best overloaded method match for `X.foo(ref int)' has some invalid arguments
2
// Line: 8
3
class
X
{
4
public void
foo
(
ref int
blah
) {}
5
6
public void
bar
(
ref int
baz
)
7
{
8
foo
(
out
baz
);
9
}
10
11
static void
Main
()
12
{
13
}
14
}