Test case for r110250. Radar 8264670. Test case by Fariborz Jahanian!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110254 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Stuart Hastings 2010-08-04 22:05:38 +00:00
parent 547b6ed16e
commit 009944e774

View File

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