fix run-test
[mcs.git] / errors / cs0633-3.cs
blob17e58dd7a5c0221e14b35604f4e9646c07f4c420
1 // cs0633-3.cs: The argument to the `System.Diagnostics.ConditionalAttribute' attribute must be a valid identifier
2 // Line: 8
4 using System;
5 using System.Diagnostics;
7 class TestClass {
8 [Conditional ("UNDEFINED CONDITION")]
9 static void ConditionalMethod ()