2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0633-3.cs
blobbddb134cef94c1a18f04dae7482de6d08f64d0cb
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 ()