aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/decltype-crash.cpp
blob: f94ba453ffb4af7d8246556c59b43216cc2cbd3c (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -fsyntax-only -verify %s

int& a();

void f() {
  decltype(a()) c; // expected-error {{use of undeclared identifier 'decltype'}}
}