Files
CMake/Tests/ObjC/objc-file-extension-test/main.m
T
Brad King d2e5e6ff1a Tests: Organize Objective C/C++ test directories
Move them all under `Tests/ObjC` and `Tests/ObjCXX`.
2019-11-14 10:57:42 -05:00

13 lines
219 B
Objective-C

#ifndef __OBJC__
# error "Compiler is not an Objective-C compiler."
#endif
#import <Foundation/Foundation.h>
int main()
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
[pool release];
return 0;
}