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>2004-06-02 00:06:00 +0400
committerMarek Safar <marek.safar@gmail.com>2004-06-02 00:06:00 +0400
commitd12ace09e5fe7baf745d402e0a42b37fcdc73d94 (patch)
tree17c4c810ac4481264ebb95d0bad86a6f1977f443 /mcs/tests/test-267.cs
parent4935bfc2a8b73195fe6884700a8e241064420c9b (diff)
2004-06-01 Marek Safar <marek.safar@seznam.cz>
* test-267.cs: New test. svn path=/trunk/mcs/; revision=28654
Diffstat (limited to 'mcs/tests/test-267.cs')
-rw-r--r--mcs/tests/test-267.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/mcs/tests/test-267.cs b/mcs/tests/test-267.cs
new file mode 100644
index 00000000000..e3569d7990e
--- /dev/null
+++ b/mcs/tests/test-267.cs
@@ -0,0 +1,16 @@
+using System;
+
+public class X
+{
+ [CLSCompliant (false)]
+ public static string Text ()
+ {
+ return "PASS";
+ }
+
+ public static int Main ()
+ {
+ Console.WriteLine (Text ());
+ return 0;
+ }
+}