summaryrefslogtreecommitdiff
path: root/test/FrontendObjC++/2010-08-06-X.Y-syntax.mm
blob: b33d7307af49e1f5ecc2add00ee7e87395cb39c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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