// RUN: clang-cc -fsyntax-only -verify %s struct add_pointer { template struct apply { typedef T* type; }; }; struct add_reference { template struct apply { typedef T& type; // expected-error{{cannot form a reference to 'void'}} }; }; struct bogus { struct apply { typedef int type; }; }; template struct apply1 { typedef typename MetaFun::template apply::type type; // expected-note{{in instantiation of template class 'struct add_reference::apply' requested here}} \ // expected-error{{'apply' following the 'template' keyword does not refer to a template}} \ // FIXME: expected-error{{type 'MetaFun::template apply' cannot be used prior to '::' because it has no members}} }; int i; apply1::type ip = &i; apply1::type ir = i; apply1::type fr = i; // expected-error{{non-const lvalue reference to type 'float' cannot be initialized with a value of type 'int'}} void test() { apply1::type t; // expected-note{{in instantiation of template class 'struct apply1' requested here}} \ // FIXME: expected-error{{unexpected type name 'type': expected expression}} apply1::type t2; // expected-note{{in instantiation of template class 'struct apply1' requested here}} \ // FIXME: expected-error{{unexpected type name 'type': expected expression}} }