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

test-825.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3dda2ede0bebfef358b318165b8e58021617a056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Compiler options: -warnaserror

using System.Diagnostics;

static class Test
{
	const bool logEnabled = false;

	[Conditional (logEnabled ? "A" : "B")]
	internal static void WriteLine (string text)
	{
	}

	public static void Main ()
	{
	}
}