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 #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs1689.cs
blob
f6ab59c9eee67cfd86b1d2f3334ad4223d0ee5ea
1
// CS1689: Attribute `System.Diagnostics.ConditionalAttribute' is only valid on methods or attribute classes
2
// Line: 6
3
4
using
System
.
Diagnostics
;
5
6
[
Conditional
(
"DEBUG"
)]
7
public class
Test
{}
8