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
2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
errors
/
cs1750.cs
blob
15b09c384911dc06da2aa68f6eb00dfa17474bb3
1
// CS1750: Optional parameter expression of type `string' cannot be converted to parameter type `int'
2
// Line: 6
3
4
public class
C
5
{
6
public
C
(
int
a
=
"a"
)
7
{
8
}
9
}