9 lines
175 B
C#
Raw Normal View History

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