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:
authorMiguel de Icaza <miguel@gnome.org>2005-04-16 23:28:59 +0400
committerMiguel de Icaza <miguel@gnome.org>2005-04-16 23:28:59 +0400
commit6cae4e5b523d84262b77ab4204f40408fcfd31f2 (patch)
treeb3e2c1e3af5dcdbf5e928f57c0bd0e291710e281 /mcs/errors/cs0019-9.cs
parentfb2d9de06930708f63021311190fe5b3f1623c6a (diff)
Add new negative test case
svn path=/trunk/mcs/; revision=43125
Diffstat (limited to 'mcs/errors/cs0019-9.cs')
-rw-r--r--mcs/errors/cs0019-9.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/mcs/errors/cs0019-9.cs b/mcs/errors/cs0019-9.cs
new file mode 100644
index 00000000000..80211ccf56d
--- /dev/null
+++ b/mcs/errors/cs0019-9.cs
@@ -0,0 +1,16 @@
+//
+// From bug #59864
+//
+using System.Reflection;
+using System.Runtime.CompilerServices;
+
+public class Foo {
+
+ public static void Main ()
+ {
+ MethodImplAttributes methodImplAttributes = 0;
+
+ if ((methodImplAttributes & MethodImplOptions.Synchronized) == 0) {
+ }
+ }
+}