Странная ошибка NSAssert

Я не могу понять, почему я получаю

use of undeclared identifier _cmd  did you mean rcmd

в строке, где находится NSAssert.

#import <Foundation/Foundation.h>

int main (int argc, const char * argv[])
{

    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int x = 10;

    NSAssert(x > 11, @"x should be greater than %d", x);

    [pool drain];
    return 0;
}
46
задан foho 16 March 2012 в 14:49
поделиться