blob: 986094c07235f69e157e1e675a333c485532140e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// RUN: %llvmgcc %s -S
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
|