X-Git-Url: https://git.saurik.com/apple/objc4.git/blobdiff_plain/7c0e6487d7b67b6bf6c632300ee4b74e8950b051..7af964d1562d70f51a8e9aca24215ac3d83d0624:/test/definitions.m diff --git a/test/definitions.m b/test/definitions.m new file mode 100644 index 0000000..5519933 --- /dev/null +++ b/test/definitions.m @@ -0,0 +1,23 @@ +// DO NOT include anything else here +#include +// DO NOT include anything else here +Class c = Nil; +SEL s; +IMP i; +id o = nil; +BOOL b = YES; +BOOL b2 = NO; +__strong void *p; + + +#include "test.h" + +int main() +{ + testassert(YES); + testassert(!NO); + testassert(!nil); + testassert(!Nil); + + succeed(__FILE__); +}