Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0633-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17e58dd7a5c0221e14b35604f4e9646c07f4c420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0633-3.cs: 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 ()
	{
	}
}