1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++98 2*f4a2713aSLionel Sambuc f()3*f4a2713aSLionel Sambucvoid f() { 4*f4a2713aSLionel Sambuc int arr[] = { 1, 2, 3 }; 5*f4a2713aSLionel Sambuc 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*f4a2713aSLionel Sambuc } 7*f4a2713aSLionel Sambuc } 8