llvm-6502/test/FrontendObjC++/2010-08-04-Template.mm

11 lines
205 B
Plaintext
Raw Normal View History

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