3c1f479b9d
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
12 lines
221 B
C#
12 lines
221 B
C#
// CS8043: `S.S(long)': Structs with primary constructor cannot specify default constructor initializer
|
|
// Line: 6
|
|
// Compiler options: -langversion:experimental
|
|
|
|
struct S (int x)
|
|
{
|
|
public S (long x)
|
|
: this ()
|
|
{
|
|
}
|
|
}
|