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-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0023-12.cs
blob
670e373f2a684c82e82dcb65f9e8f6615b87f615
1
// cs0023: The `+' operator cannot be applied to operand of type `string'
2
// Line: 10
3
4
using
System
;
5
6
public class
Test
7
{
8
static void
Main
()
9
{
10
Console
.
WriteLine
(
"a"
+ +
"b"
);
11
}
12
}