Move variable that's unused in an NDEBUG build inside the DEBUG() macro, fixing
[llvm.git] / test / FrontendObjC++ / 2010-08-04-Template.mm
blob2ebfd3e17cefdfdf775e41b5006108103d88d28e
1 // RUN: %llvmgcc %s -S
2 struct TRunSoon {
3   template <class P1> static void Post() {}
4 };
6 @implementation TPrivsTableViewMainController
7 - (void) applyToEnclosed {
8   TRunSoon::Post<int>();
10 @end