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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs1525-13.cs
blob
b20dce864b7e7fb3f21727ccd536a87ec1eaca49
1
// CS1525: Unexpected symbol `)', expecting `.' or `['
2
// Line: 10
3
4
using
System
.
Collections
;
5
6
class
Collection
:
CollectionBase
7
{
8
public int
Add
(
int
x
)
9
{
10
return
((
IList
)
base
).
Add
(
x
);
11
}
12
}
13
14