[corlib] Use temp directory for assemblies in SaveTest.Save() (#5727)
[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 }