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
/
cs0023.cs
blob
166813a45da25a9ec880d7c39f8ec520915b3a19
1
// CS0023: The `~' operator cannot be applied to operand of type `Foo'
2
// Line : 10
3
4
public class
Foo
{
5
6
public static void
Main
()
7
{
8
Foo k
=
new
Foo
();
9
10
int
i
=
~ k
;
11
12
}
13
}