[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenObjCXX / 2010-08-06-X.Y-syntax.mm
blob290aaf67bbfd5a2fb3e8e1d056fe418dce785cb5
1 // RUN: %clang_cc1 -emit-llvm %s -o -
2 struct TFENode {
3   TFENode(const TFENode& inNode);
4 };
6 @interface TIconViewController
7 - (const TFENode&) target;
8 @end
10 void sortAllChildrenForNode(const TFENode&node);
12 @implementation TIconViewController
13 - (void) setArrangeBy {
14   sortAllChildrenForNode(self.target);
16 @end