blob: 57588ebcf1f02a3ec279334d45fb4cdad71fad99 [file] [log] [blame]
Richard Smith8f4fb192011-09-04 19:54:14 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++98
2
3void f() {
4 int arr[] = { 1, 2, 3 };
Douglas Gregorb3df1382011-10-12 19:26:40 +00005 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}}
Richard Smith8f4fb192011-09-04 19:54:14 +00006 }
7}