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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0030-9.cs
blob
40bb09f4e32f8f2c49e2f78eb4a78d5b4ddc1a00
1
// CS0030: Cannot convert type `System.Enum' to `int'
2
// Line: 11
3
4
using
System
;
5
6
class
MainClass
7
{
8
public static void
Main
()
9
{
10
Enum e
=
null
;
11
int
i
= (
int
)
e
;
12
}
13
}