12 lines
192 B
C#
12 lines
192 B
C#
|
// CS0111: A member `T.T()' is already defined. Rename this member or use different parameter types
|
||
|
// Line : 6
|
||
|
|
||
|
class T {
|
||
|
static T () {}
|
||
|
static T () {}
|
||
|
|
||
|
public static void Main ()
|
||
|
{
|
||
|
}
|
||
|
}
|