xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjCXX/2010-08-06-X.Y-syntax.mm (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 -emit-llvm %s -o -
2struct 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
17