summaryrefslogtreecommitdiffstats
path: root/test/PCH/cxx2a-for-init-statement.cpp
blob: 2147c0f8a2a17951cb3bbb28ab1250b688c2c40c (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -emit-pch -std=c++2a -o %t %s
// RUN: %clang_cc1 -std=c++2a -x ast -ast-print %t | FileCheck %s

void f() {
  // CHECK:      for (int arr[3]; int n : arr) {
  // CHECK-NEXT: }
  for (int arr[3]; int n : arr) {}
}