blob: 6318facfc0ea8ea9348de61125bf74184e9a5434 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -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}