opnsense-src/test/SemaTemplate/instantiate-function-2.cpp

13 lines
169 B
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
2009-06-02 13:58:47 -04:00
template <typename T> struct S {
S() { }
S(T t);
};
template struct S<int>;
void f() {
S<int> s1;
S<int> s2(10);
}