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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs1019.cs
blob
a767e90372bf56f14d222989bf2b1b0cab2c8f0d
1
// CS1019: Overloadable unary operator expected
2
// Line: 18
3
4
public class
MyClass
{
5
6
public int this
[
int
ndx
]
7
{
8
get
{ }
9
set
{ }
10
}
11
12
public event
EventHandler Click
13
{
14
add
{ }
15
remove
{ }
16
}
17
18
public static
MyClass
operator
/ (
MyClass i
)
19
{
20
21
}
22
23
public static implicit operator
MyClass
(
Object o
)
24
{
25
26
}
27
}