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-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0037-4.cs
blob
84556c8fd2d186cef9e0a0e8d55bc5b6cf6a112a
1
// cs0037-4.cs: Cannot convert null to `int' because it is a value type
2
// Line: 9
3
4
class
X
{
5
static void
Main
()
6
{
7
int
s
=
44
;
8
switch
(
s
) {
9
case null
:
break
;
10
}
11
}
12
}