minix/external/bsd/llvm/dist/clang/test/CodeGenObjCXX/2010-08-04-Template.mm

11 lines
209 B
Text
Raw Normal View History

// RUN: %clang_cc1 -emit-llvm %s -o -
struct TRunSoon {
template <class P1> static void Post() {}
};
@implementation TPrivsTableViewMainController
- (void) applyToEnclosed {
TRunSoon::Post<int>();
}
@end