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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0577.cs
blob
bff43fa36575d893bf0d474b8e49bde8fe6a68bf
1
// cs0577.cs: Conditional not valid on `MainClass.I.F()' because it is a constructor, destructor, operator or explicit interface implementation
2
// Line: 10
3
4
interface
I
5
{
6
void
F
();
7
}
8
9
class
MainClass
:
I
{
10
[
System
.
Diagnostics
.
Conditional
(
"DEBUG"
)]
11
void
I
.
F
() {}
12
}