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-02-13 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-453.cs
blob
3543b0d7bbe05c99ccce3bd2442b77f28b95fbe0
1
using
System
;
2
3
class
C
{
4
internal enum
Flags
{
5
Removed
=
0
,
6
Public
=
1
7
}
8
9
static
Flags _enumFlags
;
10
11
public static void
Main
()
12
{
13
if
((
Flags
.
Removed
|
0
).
ToString
() !=
"Removed"
)
14
throw new
ApplicationException
();
15
}
16
}
17