[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenObjCXX / 2010-08-04-Template.mm
blobc53e3cb6da4458fab2f91a1bc735e90515ef5eb7
1 // RUN: %clang_cc1 -emit-llvm %s -o -
2 struct TRunSoon {
3   template <class P1> static void Post() {}
4 };
6 @implementation TPrivsTableViewMainController
7 - (void) applyToEnclosed {
8   TRunSoon::Post<int>();
10 @end