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-03-15 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0567.cs
blob
322663869dcc329be193d1a7356be211bebff999
1
// cs0567.cs: Interfaces cannot contain operators
2
// Line: 5
3
4
interface
Interface
{
5
bool operator
== (
int
a
,
int
b
);
6
}
7
8