Move Enum and CorElementType to shared (dotnet/coreclr#23177)
[mono-project.git] / mcs / tests / test-825.cs
blob3dda2ede0bebfef358b318165b8e58021617a056
1 // Compiler options: -warnaserror
3 using System.Diagnostics;
5 static class Test
7 const bool logEnabled = false;
9 [Conditional (logEnabled ? "A" : "B")]
10 internal static void WriteLine (string text)
14 public static void Main ()