repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-11-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0633-3.cs
blob
17e58dd7a5c0221e14b35604f4e9646c07f4c420
1
// cs0633-3.cs: 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