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