9 lines
175 B
C#
9 lines
175 B
C#
|
// CS0824: Constructor `C.C()' is marked `external' but has no external implementation specified
|
||
|
// Line: 7
|
||
|
// Compiler options: -warnaserror
|
||
|
|
||
|
class C
|
||
|
{
|
||
|
public extern C();
|
||
|
}
|