mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
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
|