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-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1525-12.cs
blob
a3b2eee19b60f5cf971befaa44493a37b49de0f5
1
// CS1525: Unexpected symbol `==', expecting `type'
2
// Line: 8
3
4
class
A
5
{
6
public static implicit operator
== (
A a
,
bool
b
)
7
{
8
return false
;
9
}
10
}