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-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0573.cs
blob
631c64c8ede5d3f5e7583de7627129a9cc0c5803
1
// cs0573.cs: `A.a': Structs cannot have instance field initializers
2
// Line: 5
3
struct
A
{
4
int
a
=
1
;
5
}
6
7
class
D
{
8
static void
Main
()
9
{
10
A
[]
a
=
new
A
[
10
];
11
12
}
13
}