Test case for r110459. Radar 8264751. Test case by Fariborz Jahanian!
[oota-llvm.git] / test / FrontendObjC++ / 2010-08-06-X.Y-syntax.mm
1 // RUN: %llvmgcc %s -S -emit-llvm
2 struct TFENode {
3   TFENode(const TFENode& inNode);
4 };
5
6 @interface TIconViewController
7 - (const TFENode&) target;
8 @end
9
10 void sortAllChildrenForNode(const TFENode&node);
11
12 @implementation TIconViewController
13 - (void) setArrangeBy {
14   sortAllChildrenForNode(self.target);
15 }
16 @end