mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
5d697f7ae2
llvm-svn: 110254
11 lines
205 B
Plaintext
11 lines
205 B
Plaintext
// RUN: %llvmgcc %s -S -emit-llvm
|
|
struct TRunSoon {
|
|
template <class P1> static void Post() {}
|
|
};
|
|
|
|
@implementation TPrivsTableViewMainController
|
|
- (void) applyToEnclosed {
|
|
TRunSoon::Post<int>();
|
|
}
|
|
@end
|