blob: e05993a5f03ba65b1c3f206b0c6b26caeed3bebc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#if false
#line hahaha
#error
#define X
#undef X
#pragma warning disable 3005 // wrong directive on csc 1.x
public class Foo
{
}
#pragma warning restore // wrong directive on csc 1.x
#region // blank -> no error
#endregion
#endif // of funky directives
public class Test
{
public static void Main ()
{
string s = @"Test string
#define
";
}
}
|