12 lines
172 B
C#
12 lines
172 B
C#
|
// CS0143: The class `A' has no constructors defined
|
||
|
// Line: 9
|
||
|
// Compiler options: -r:CS0143-lib.dll
|
||
|
|
||
|
public class Test
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
new A ();
|
||
|
}
|
||
|
}
|