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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0633-3.cs
blob
1a8cd5af4eb28acbf083140c94d16794d68a052a
1
// CS0633: The argument to the `System.Diagnostics.ConditionalAttribute' attribute must be a valid identifier
2
// Line: 8
3
4
using
System
;
5
using
System
.
Diagnostics
;
6
7
class
TestClass
{
8
[
Conditional
(
"UNDEFINED CONDITION"
)]
9
static void
ConditionalMethod
()
10
{
11
}
12
}
13
14