]> git.saurik.com Git - apple/objc4.git/blob - test/nilAPIArgs.m
objc4-437.3.tar.gz
[apple/objc4.git] / test / nilAPIArgs.m
1 #include "test.h"
2
3 #import <objc/runtime.h>
4
5 int main() {
6 // ensure various bits of API don't crash when tossed nil parameters
7 class_conformsToProtocol(nil, nil);
8 method_setImplementation(nil, NULL);
9
10 succeed(__FILE__);
11 }