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
Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs1502-4.cs
blob
0238003bbfd88a475366463c25c3f04edab1e802
1
// CS1502: The best overloaded method match for `X.X(int)' has some invalid arguments
2
// Line: 14
3
4
public class
X
{
5
6
public
X
(
int
a
)
7
{
8
}
9
}
10
11
class
D
{
12
static void
Main
()
13
{
14
X x
=
new
X
(
"hola"
);
15
}
16
}
17