2010-01-01 05:34:51 -05:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2009-10-14 14:03:49 -04:00
|
|
|
|
|
|
|
|
int& a();
|
|
|
|
|
|
|
|
|
|
void f() {
|
2010-01-01 05:34:51 -05:00
|
|
|
decltype(a()) c; // expected-error {{use of undeclared identifier 'decltype'}}
|
2009-10-14 14:03:49 -04:00
|
|
|
}
|