summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0824.cs
blob: 14536c088d6125bd1975708ea3d6f493c4420d8d (plain)
1
2
3
4
5
6
7
8
// CS0824: Constructor `C.C()' is marked `external' but has no external implementation specified
// Line: 7
// Compiler options: -warnaserror

class C
{
	public extern C();
}