mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
15 lines
143 B
Objective-C
15 lines
143 B
Objective-C
// RUN: %clang_cc1 -rewrite-objc %s -o -
|
|
|
|
@interface MyDerived
|
|
{
|
|
@public
|
|
int IVAR;
|
|
}
|
|
@end
|
|
|
|
MyDerived *pd;
|
|
int main() {
|
|
return pd->IVAR;
|
|
}
|
|
|
|
|