1 // RUN: clang-cc -fsyntax-only -verify %s
2 template <typename T> struct S {
3   S() { }
4   S(T t);
5 };
6 
7 template struct S<int>;
8 
9 void f() {
10   S<int> s1;
11   S<int> s2(10);
12 }
13