mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
d2e5e6ff1a
Move them all under `Tests/ObjC` and `Tests/ObjCXX`.
13 lines
219 B
Objective-C
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;
|
|
}
|