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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0030-3.cs
blob
4bb9fe059a3a4837ef948ff1334dd4bb3748b2ec
1
// cs0030-3.cs : Cannot convert type `string' to `char'
2
// Line : 8
3
4
public class
Blah
{
5
6
public static int
Main
()
7
{
8
char
ch
= (
char
)
"a"
;
9
}
10
}