// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++1z // FIXME: This is in p10 (?) in C++1z. template struct A { A(T); }; template A(T) -> A; A a = a; // expected-error{{variable 'a' declared with deduced type 'A' cannot appear in its own initializer}}