blob: fa98e751ffac6efa4692e24018261afaf5318a96 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
int& a();
void f() {
decltype(a()) c; // expected-error {{no matching function for call to 'decltype'}}
}