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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs1525-2.cs
blob
f8d094b0ad1d7863e898415583fbc2a36c029f22
1
// CS1525: Unexpected symbol `returnValue'
2
// Line: 11
3
4
public class
C
5
{
6
public void
Foo
()
7
{
8
string
returnValue
=
null
;
9
10
returnValue
+= (
1
+
3
)
11
returnValue
+= (
""
);
12
}
13
}