blob: 001048910ce9236df979f1eb48419746c11e5fc5 [file] [log] [blame]
Douglas Gregorb5352cf2009-10-08 21:35:42 +00001// RUN: clang -fsyntax-only -Wunused-variable -verify %s
2
3template<typename T> void f() {
4 T t;
5 t = 17;
6}
Anders Carlssonf7613d52009-11-07 07:26:56 +00007
8struct A { A(); };
9struct B { ~B(); };
10
11void f() {
12 A a;
13 B b;
14}