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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs1525-2.cs
blob
36de1f5f99f510f4c30c23c5a854a45a8abec591
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
}