c042cd0c52
Former-commit-id: 4610231f55806d2a05ed69e5ff3faa7336cc1479
9 lines
113 B
C#
9 lines
113 B
C#
// CS0568: Structs cannot contain explicit parameterless constructors
|
|
// Line: 6
|
|
|
|
struct S
|
|
{
|
|
public S ()
|
|
{
|
|
}
|
|
} |