blob: a52c677bc721084040f5cb1ab5b11f6103edb682 [file] [log] [blame]
// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o -
@interface Derived @end
int main(void) {
Derived *v ;
[v free];
return 0;
}