repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
test-476.cs
blob
e05993a5f03ba65b1c3f206b0c6b26caeed3bebc
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