16 lines
154 B
C#
16 lines
154 B
C#
|
// CS1525: Unexpected symbol `(', expecting `,', `;', or `='
|
||
|
// Line: 13
|
||
|
|
||
|
class X {
|
||
|
X (int a)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class Y {
|
||
|
static void Main ()
|
||
|
{
|
||
|
X x (4);
|
||
|
}
|
||
|
}
|