Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Luke <jluke@mono-cvs.ximian.com>2004-10-01 21:42:18 +0400
committerJohn Luke <jluke@mono-cvs.ximian.com>2004-10-01 21:42:18 +0400
commitac5cb1f8a9080e1e27e2fdb57da8522475ba5d7e (patch)
tree569aba201a3d0a006ce362dd962af84734cfdc0b /mcs/errors/cs0647-2.cs
parentc1e8d7d744557fac93c71a9fcd0aa568eca61119 (diff)
2004-10-01 John Luke <john.luke@gmail.com>
* *.cs: fix some incorrect tests by either addding a Main method, or adding a -t:library compiler option. Makes one test pass, and adds 19 to *-expect-wrong-error as they compile when they shouldn't * *mcs-expect-*-error: update svn path=/trunk/mcs/; revision=34599
Diffstat (limited to 'mcs/errors/cs0647-2.cs')
-rw-r--r--mcs/errors/cs0647-2.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/mcs/errors/cs0647-2.cs b/mcs/errors/cs0647-2.cs
index 8c8b70005f5..0b21f815cbd 100644
--- a/mcs/errors/cs0647-2.cs
+++ b/mcs/errors/cs0647-2.cs
@@ -6,3 +6,8 @@ using System.Security;
using System.Security.Permissions;
[assembly: SecurityPermission (SecurityAction.Demand, SkipVerification=true)]
+
+class Test
+{
+ static void Main () {}
+}