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
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0266-17.cs
blob
d41c78f50b2e731a168ec5e3a84b8c891fd29fa6
1
// CS0266: Cannot implicitly convert type `int' to `sbyte'. An explicit conversion exists (are you missing a cast?)
2
// Line: 9
3
4
class
S
5
{
6
static void
Main
()
7
{
8
sbyte
s
=
1
;
9
sbyte
r
= +
s
;
10
}
11
}