You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
197 B

#import <Foundation/Foundation.h>
int main(void) {
int i = -1;
NSNumber *foo1 = @-1;
NSNumber *foo2 = @(-1);
NSNumber *foo3 = @1;
NSNumber *foo4 = @(1);
NSNumber *foo5 = @(i);
return 0;
}