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
/
cs0573-3.cs
blob
e3faa9b2ad824711f44985747ca6611acec3cf89
1
// CS0573: 'S': Structs cannot have instance property or field initializers
2
// Line: 8
3
4
using
System
;
5
6
struct
S
7
{
8
event
Action E
=
null
;
9
}