summaryrefslogtreecommitdiff
path: root/test/CodeGenObjCXX/2010-08-06-X.Y-syntax.mm
blob: 290aaf67bbfd5a2fb3e8e1d056fe418dce785cb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %clang_cc1 -emit-llvm %s -o -
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