blob: 001048910ce9236df979f1eb48419746c11e5fc5 [file] [log] [blame]
// RUN: clang -fsyntax-only -Wunused-variable -verify %s
template<typename T> void f() {
T t;
t = 17;
}
struct A { A(); };
struct B { ~B(); };
void f() {
A a;
B b;
}