[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / tests / test-476.cs
1 #if false
2 #line hahaha
3 #error
4 #define X
5 #undef X
6 #pragma warning disable 3005 // wrong directive on csc 1.x
7         public class Foo
8         {
9         }
10 #pragma warning restore // wrong directive on csc 1.x
11
12 #region // blank -> no error
13 #endregion
14
15 #endif // of funky directives
16
17 public class Test
18 {
19         public static void Main ()
20         {
21                 string s = @"Test string
22                         #define
23                         ";
24         }
25 }
26