// RUN: %clang_cc1 -fsyntax-only -verify %s template struct bind_metafun { typedef typename MetaFun::template apply type; }; struct add_pointer { template struct apply { typedef T* type; }; }; int i; // FIXME: if we make the declarator below a pointer (e.g., with *ip), // the error message isn't so good because we don't get the handy // 'aka' telling us that we're dealing with an int**. Should we fix // getDesugaredType to dig through pointers and such? bind_metafun::type::type ip = &i; bind_metafun::type::type fp = &i; // expected-error{{cannot initialize a variable of type 'bind_metafun::type::type' (aka 'float *') with an rvalue of type 'int *'}} template struct extract_type_type { typedef typename T::type::type t; }; double d; extract_type_type >::t dp = &d;