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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs0266-12.cs
blob
e12677554e508887e51590727155024cbd52d969
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
}