freebsd-dev/test/SemaCXX/decltype-crash.cpp
2009-10-14 18:03:49 +00:00

8 lines
152 B
C++

// RUN: clang-cc -fsyntax-only -verify %s
int& a();
void f() {
decltype(a()) c; // expected-error {{no matching function for call to 'decltype'}}
}