blob: a52c677bc721084040f5cb1ab5b11f6103edb682 [file] [log] [blame]
John McCall260611a2012-06-20 06:18:46 +00001// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o -
Fariborz Jahaniand20f1762007-12-06 17:43:04 +00002
3@interface Derived @end
4
5int main(void) {
6 Derived *v ;
7 [v free];
8 return 0;
9}