llvm-6502/test/FrontendObjC++/2010-08-06-X.Y-syntax.mm
2010-08-06 19:02:24 +00:00

17 lines
309 B
Plaintext

// RUN: %llvmgcc %s -S -emit-llvm
struct TFENode {
TFENode(const TFENode& inNode);
};
@interface TIconViewController
- (const TFENode&) target;
@end
void sortAllChildrenForNode(const TFENode&node);
@implementation TIconViewController
- (void) setArrangeBy {
sortAllChildrenForNode(self.target);
}
@end