blob: d8b9a00ad6deb4a3074875ce304bfe1c9612a471 [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}