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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0577.cs
blob
7d87e619c24f384405d9878995b29bfb7b77d038
1
// CS0577: 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
}