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
Make csproj target work again
[mcs.git]
/
errors
/
cs0266-12.cs
blob
68bbbf5844293b3add1a3d6d8f425bb650d0f928
1
// CS0266: Cannot implicitly convert type `int' to `char'. An explicit conversion exists (are you missing a cast?)
2
// Line: 12
3
4
class
X
5
{
6
public static void
Main
()
7
{
8
char
x
=
'A'
;
9
char
b
= +
x
;
10
}
11
}