llvm-project/clang/test/CodeGenObjCXX/2010-08-04-Template.mm

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
209 B
Plaintext
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