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-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0029-11.cs
blob
1790957428befdd98d063ae8574b56d4d14d7d38
1
// CS0029: Cannot implicitly convert type `int' to `string'
2
// Line: 5
3
4
class
A
{
5
public static implicit operator string
(
A a
)
6
{
7
return
42
;
8
}
9
}