New test.
[mono.git] / mcs / errors / cs0633-3.cs
1 // cs0633-3.cs: The argument to the `System.Diagnostics.ConditionalAttribute' attribute must be a valid identifier\r
2 // Line: 8\r
3 \r
4 using System;\r
5 using System.Diagnostics;\r
6 \r
7 class TestClass {\r
8         [Conditional ("UNDEFINED CONDITION")]\r
9         static void ConditionalMethod ()\r
10         {\r
11         }\r
12 }\r
13 \r
14 \r