Unsigned constants for ISO_FORTRAN_ENV and ISO_C_BINDING.
[official-gcc.git] / gcc / testsuite / obj-c++.dg / extern-c-1.mm
blob8b9147a807e92b13b55fc94d8f0472962d0c0d3d
1 /* Test extern c support inside @implementation */
2 /* Devang Patel  <dpatel@apple.com>.  */
3 // { dg-additional-options "-Wno-objc-root-class" }
5 #include <objc/objc.h>
7 @interface Extern 
8 @end
10 @implementation Extern
12 extern "C" void NSRegisterElement(id element);
14 - init {
15   NSRegisterElement(self);
16   return self;
19 @end