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
/
cs0567.cs
blob
1a0ac5ad369a7333722761cc719955bd357c7b7d
1
// CS0567: Interfaces cannot contain operators
2
// Line: 5
3
4
interface
Interface
{
5
bool operator
== (
int
a
,
int
b
);
6
}
7
8