// RUN: %clang_cc1 -fsyntax-only %s -std=c++11 -verify
// This is a test for an egregious hack in Clang that works around
// an issue with libstdc++-4.2's <tr1/hashtable> implementation.
// The code in question returns 'false' from a function with a pointer
// return type, which is ill-formed in C++11.
auto *test1 = std::tr1::hashtable<int>.;
void * // expected-error {{cannot initialize}}