1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
3 template<class ...Types
> struct Tuple
;
8 Tuple
<int, float> *t2b
= t2a
; // expected-error{{cannot initialize a variable of type 'Tuple<int, float> *' with an lvalue of type 'Tuple<int, char> *'}}
9 Tuple
<int, float, double> *t3
;