brintos

brintos / llvm-project-archived public Read only

0
0
Text · 232 B · 2147c0f Raw
9 lines · cpp
1// RUN: %clang_cc1 -emit-pch -std=c++2a -o %t %s2// RUN: %clang_cc1 -std=c++2a -x ast -ast-print %t | FileCheck %s3 4void f() {5  // CHECK:      for (int arr[3]; int n : arr) {6  // CHECK-NEXT: }7  for (int arr[3]; int n : arr) {}8}9