cxx2a-for-init-statement.cpp 232 Bytes Raw Blame History Permalink 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) {} }