blob: 51a60146d46aef0b4d7e69ebd32a01d7fb0c63dd [file] [log] [blame]
Douglas Gregor49f25ec2009-05-15 21:18:27 +00001// RUN: clang-cc -fsyntax-only -verify %s
2template <typename T> struct S {
3 S() { }
4 S(T t);
5};
6
7template struct S<int>;
8
9void f() {
10 S<int> s1;
11 S<int> s2(10);
12}