14 lines
120 B
C#
14 lines
120 B
C#
|
// CS8041: Primary constructor already has a body
|
||
|
// Line: 10
|
||
|
|
||
|
class C (int arg)
|
||
|
{
|
||
|
{
|
||
|
arg = 1;
|
||
|
}
|
||
|
|
||
|
{
|
||
|
arg = 2;
|
||
|
}
|
||
|
}
|