brintos

brintos / llvm-project-archived public Read only

0
0
Text · 254 B · 57588eb Raw
8 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++982 3void f() {4  int arr[] = { 1, 2, 3 };5  for (auto &i : arr) { // expected-warning {{'auto' type specifier is a C++11 extension}} expected-warning {{range-based for loop is a C++11 extension}}6  }7}8