1// TEST_CONFIG
2
3#include "test.h"
4
5#import <objc/runtime.h>
6
7int main() {
8    // ensure various bits of API don't crash when tossed nil parameters
9    class_conformsToProtocol(nil, nil);
10    method_setImplementation(nil, NULL);
11  
12    succeed(__FILE__);
13}
14