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
Move Enum and CorElementType to shared (dotnet/coreclr#23177)
[mono-project.git]
/
mcs
/
tests
/
test-825.cs
blob
3dda2ede0bebfef358b318165b8e58021617a056
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
}