summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0633-3.cs
blob: 1a8cd5af4eb28acbf083140c94d16794d68a052a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0633: The argument to the `System.Diagnostics.ConditionalAttribute' attribute must be a valid identifier
// Line: 8

using System;
using System.Diagnostics;

class TestClass {
	[Conditional ("UNDEFINED CONDITION")]
	static void ConditionalMethod ()
	{
	}
}