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-11-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs1502-11.cs
blob
aadff1ddb59cc72a52adecd8cf2a60737fe660c3
1
// CS1502: The best overloaded method match for `string.String(char*)' has some invalid arguments
2
// Line: 8
3
4
class
C
5
{
6
static string
Prop
{
7
get
{
8
return new string
(
"s"
);
9
}
10
}
11
}