blob: 986094c07235f69e157e1e675a333c485532140e [file] [log] [blame]
Duncan Sands79040682010-11-25 21:48:20 +00001// RUN: %llvmgcc %s -S
Stuart Hastings5afa7382010-08-06 19:02:24 +00002struct TFENode {
3 TFENode(const TFENode& inNode);
4};
5
6@interface TIconViewController
7- (const TFENode&) target;
8@end
9
10void sortAllChildrenForNode(const TFENode&node);
11
12@implementation TIconViewController
13- (void) setArrangeBy {
14 sortAllChildrenForNode(self.target);
15}
16@end