You cannot 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
143 B
Objective-C

#include "Test.h"
__attribute__((weak_import))
@interface WeakClass
- (id)class;
@end
int main(void)
{
assert([WeakClass class] == nil);
}