mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
9 lines
125 B
Objective-C
9 lines
125 B
Objective-C
// RUN: %clang_cc1 -rewrite-objc %s -o -
|
|
|
|
@interface Derived @end
|
|
|
|
int main(void) {
|
|
Derived *v ;
|
|
[v free];
|
|
return 0;
|
|
}
|