brintos

brintos / llvm-project-archived public Read only

0
0
Text · 313 B · 290aaf6 Raw
17 lines · plain
1// RUN: %clang_cc1 -emit-llvm %s -o -2struct TFENode {3  TFENode(const TFENode& inNode);4};5 6@interface TIconViewController7- (const TFENode&) target;8@end9 10void sortAllChildrenForNode(const TFENode&node);11 12@implementation TIconViewController13- (void) setArrangeBy {14  sortAllChildrenForNode(self.target);15}16@end17