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:
authorMarek Safar <marek.safar@gmail.com>2012-09-05 13:53:26 +0400
committerMarek Safar <marek.safar@gmail.com>2012-09-05 14:35:45 +0400
commit222fd86dcd1932aed74b80506d7dc4130aeb525e (patch)
tree7f91beb772c385e52a91b8219e4ce975c62ea4bd /mcs/tests/test-852.cs
parent663437cdba5351f12fa256e8366a561db6f9ca84 (diff)
Allow any characters after invalid pragma warning
Diffstat (limited to 'mcs/tests/test-852.cs')
-rw-r--r--mcs/tests/test-852.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/tests/test-852.cs b/mcs/tests/test-852.cs
new file mode 100644
index 00000000000..3f5001728b8
--- /dev/null
+++ b/mcs/tests/test-852.cs
@@ -0,0 +1,11 @@
+// Compiler options: -warnaserror
+
+public class Test
+{
+#pragma warning disable 1634
+#pragma warning suppress 56500
+ public static void Main ()
+ {
+ }
+#pragma warning restore 1634
+} \ No newline at end of file