blob: 50b3e49b78a5a5a71575faa183bdfb1c95f467ea [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
int& a();
void f() {
decltype(a()) c; // expected-warning {{'decltype' is a keyword in C++11}} expected-error {{use of undeclared identifier 'decltype'}}
}