Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0824.cs
1 // CS0824: Constructor `C.C()' is marked `external' but has no external implementation specified
2 // Line: 7
3 // Compiler options: -warnaserror
4
5 class C
6 {
7         public extern C();
8 }