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
/
cs8043.cs
blob
6c011e11f4a70612f36f20443762a01007eaffea
1
// CS8043: `S.S(long)': Structs with primary constructor cannot specify default constructor initializer
2
// Line: 6
3
// Compiler options: -langversion:experimental
4
5
struct
S
(
int
x
)
6
{
7
public
S
(
long
x
)
8
:
this
()
9
{
10
}
11
}