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-11-12 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0019.cs
blob
1a48091f4b92c455eafc86faf9dde89e0b109748
1
// cs0019.cs: Operator `+' cannot be applied to operands of type `Foo' and `int'
2
// Line : 11
3
4
public class
Foo
{
5
6
public static void
Main
()
7
{
8
9
Foo k
=
new
Foo
();
10
11
int
i
=
k
+
6
;
12
13
}
14
}