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-15.cs
blob
a322aa49d7ccca469f78e31577ae9e7478ad186f
1
// CS1525: Unexpected symbol `;', expecting `,' or `}'
2
// Line: 10
3
4
class
X
{
5
public int
Field
;
6
7
static void
Main
()
8
{
9
var
x
=
new
X
() {
10
Field
=
1
;
11
};
12
}
13
}