blob: 6c011e11f4a70612f36f20443762a01007eaffea (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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 ()
{
}
}
|