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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
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
}