// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s template struct Tuple; Tuple<> *t0; Tuple *t1; Tuple *t2a; Tuple *t2b = t2a; // expected-error{{cannot initialize a variable of type 'Tuple *' with an lvalue of type 'Tuple *'}} Tuple *t3;