[Microsoft.CSharp] Replaced with CoreFX implementation
[mono.git] / mcs / tests / test-825.cs
1 // Compiler options: -warnaserror
2
3 using System.Diagnostics;
4
5 static class Test
6 {
7         const bool logEnabled = false;
8
9         [Conditional (logEnabled ? "A" : "B")]
10         internal static void WriteLine (string text)
11         {
12         }
13
14         public static void Main ()
15         {
16         }
17 }