bolt/deps/llvm-18.1.8/clang/test/AST/foreachtemplatized.mm
2025-02-14 19:21:04 +01:00

15 lines
267 B
Text

// 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);
}