blob: 002bd4cfe737f110397fadd0d58abee4a1d9dee1 [file] [log] [blame]
Douglas Gregorc2c11442011-10-25 03:07:45 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wc++11-compat %s
Daniel Dunbar8bf0ccd2009-07-25 12:47:38 +00002
Anders Carlssond5940ce2009-07-09 22:00:53 +00003int& a();
4
5void f() {
Richard Smith98d86b92011-10-11 19:57:52 +00006 decltype(a()) c; // expected-warning {{'decltype' is a keyword in C++11}} expected-error {{use of undeclared identifier 'decltype'}}
Anders Carlssond5940ce2009-07-09 22:00:53 +00007}