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-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs1525-9.cs
blob
857c27e76d3d20c87c6b170860e5a8f3053e9919
1
// CS1525: Unexpected symbol `(', expecting `)', `,', `;', `[', or `='
2
// Line: 13
3
4
class
X
{
5
X
(
int
a
)
6
{
7
}
8
}
9
10
class
Y
{
11
static void
Main
()
12
{
13
X
x
(
4
);
14
}
15
}