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