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>2011-10-31 21:52:18 +0400
committerMarek Safar <marek.safar@gmail.com>2011-11-02 15:09:48 +0400
commit4d27358964ec0f65c239e1c33bfa83924cd65119 (patch)
tree3a32040849d1d18ee4bb53f73a10d2467ee7ee1d /mcs/tests/test-831.cs
parent6ac93ef9d72fdcf168acdb90dc8b6d99d6bc6814 (diff)
Allow Conditional attribute to be used with a keyword value
Diffstat (limited to 'mcs/tests/test-831.cs')
-rw-r--r--mcs/tests/test-831.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/tests/test-831.cs b/mcs/tests/test-831.cs
new file mode 100644
index 00000000000..ffcb3d46531
--- /dev/null
+++ b/mcs/tests/test-831.cs
@@ -0,0 +1,13 @@
+using System.Diagnostics;
+
+class C
+{
+ [Conditional ("true")]
+ static void Test ()
+ {
+ }
+
+ static void Main ()
+ {
+ }
+} \ No newline at end of file