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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0019.cs
blob
a909e680a7677e3c7b1d2a09aedfcc75cb043efd
1
// CS0019: Operator `+' cannot be applied to operands of type `Foo' and `int'
2
// Line : 9
3
4
public class
Foo
5
{
6
public static void
Main
()
7
{
8
Foo k
=
new
Foo
();
9
int
i
=
k
+
6
;
10
}
11
}