blob: 6318facfc0ea8ea9348de61125bf74184e9a5434 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor49f25ec2009-05-15 21:18:27 +00002template <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}