repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
test-438.cs
blob
8fda9b497b76bb4e0e8953ca3a1db6b90ec508b7
1
// bug #67711
2
using
System
;
3
using
System
.
Security
;
4
using
System
.
Security
.
Permissions
;
5
6
public class
Program
{
7
8
static public void
Main
(
string
[]
args
)
9
{
10
SecurityAction a
=
SecurityAction
.
Demand
;
11
switch
(
a
) {
12
case
(
SecurityAction
)
13
:
13
case
SecurityAction
.
Demand
:
14
Console
.
WriteLine
(
"ok"
);
15
break
;
16
}
17
}
18
}
19