#import <Foundation/Foundation.h> @interface Hello: NSObject @property NSString* s; @end @implementation Hello NSString* m() { Hello* hello = nil; return hello->_s; } @end