#import <objc/objc.h>
#import <objc/Object.h>
#import <Foundation/Foundation.h>

int main() {
	NSAutoreleasePool *pool = [NSAutoreleasePool new];
	
	int a;
	char c = 'a';
	float d, b, i = 2.0;
	
	[pool drain];
	return 0;
}
