// RUN: clang -fsyntax-only -Wunused-variable -verify %s template void f() { T t; t = 17; } struct A { A(); }; struct B { ~B(); }; void f() { A a; B b; }