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
/
gcs1918.cs
blob
245d6bef89a99f165e462f28ddccd2653071497e
1
// CS1918: Members of value type `S' cannot be assigned using a property `C.Value' object initializer
2
// Line: 18
3
4
5
struct
S
6
{
7
public int
X
;
8
}
9
10
class
C
11
{
12
public
S Value
{
13
set
{ }
14
}
15
16
static void
Main
()
17
{
18
C c
=
new
C { Value = { X = 2 }
};
19
}
20
}