1// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o - 2 3@interface Derived @end 4 5int main(void) { 6 Derived *v ; 7 [v free]; 8 return 0; 9} 10