Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

27 lines
360 B
C#

#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
";
}
}