llvm-for-llvmta/tools/clang/test/AST/foreachtemplatized.mm

16 lines
267 B
Plaintext
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -fsyntax-only -fobjc-arc -Wno-objc-root-class -std=c++11 -ast-dump %s | FileCheck %s
// CHECK-NOT: ImplicitValueInitExpr
@interface I
@end
template <typename T>
void decode(I *p) {
for (I *k in p) {}
}
void decode(I *p) {
decode<int>(p);
}