repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
FrontendObjC++
/
2010-08-04-Template.mm
blob
d0383406d7e278cf3204d199a87f66982742d387
1
// RUN: %llvmgcc %s -S -emit-llvm
2
struct TRunSoon {
3
template <class P1> static void Post() {}
4
};
5
6
@implementation TPrivsTableViewMainController
7
- (void) applyToEnclosed {
8
TRunSoon::Post<int>();
9
}
10
@end