xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjCXX/2010-08-06-X.Y-syntax.mm (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -emit-llvm %s -o -
2*f4a2713aSLionel Sambucstruct TFENode {
3*f4a2713aSLionel Sambuc  TFENode(const TFENode& inNode);
4*f4a2713aSLionel Sambuc};
5*f4a2713aSLionel Sambuc
6*f4a2713aSLionel Sambuc@interface TIconViewController
7*f4a2713aSLionel Sambuc- (const TFENode&) target;
8*f4a2713aSLionel Sambuc@end
9*f4a2713aSLionel Sambuc
10*f4a2713aSLionel Sambucvoid sortAllChildrenForNode(const TFENode&node);
11*f4a2713aSLionel Sambuc
12*f4a2713aSLionel Sambuc@implementation TIconViewController
13*f4a2713aSLionel Sambuc- (void) setArrangeBy {
14*f4a2713aSLionel Sambuc  sortAllChildrenForNode(self.target);
15*f4a2713aSLionel Sambuc}
16*f4a2713aSLionel Sambuc@end
17