2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-308.cs
blobca5d160c7ffcf0343774d76fb2513015dc298a69
1 using System;
2 using System.Security;
3 using System.Security.Permissions;
5 public class Program {
7 static public void Main (string [] args)
9 SecurityAction a = SecurityAction.Demand;
10 switch (a) {
11 case (SecurityAction)13:
12 case SecurityAction.Demand:
13 Console.WriteLine ("ok");
14 break;