10 lines
151 B
C#
Raw Normal View History

// CS9005: Constructor initializer cannot access primary constructor parameters
// Line: 7
class Test(string s)
{
public Test ()
: this (s)
{
}
}