Commit 98e48780 by Benjamin Kosnik

new test

From-SVN: r22642
parent 8b424a9b
template <class T>
class Foo
{
public:
Foo(const T&);
Foo(const T&, const T&);
};
template <class T>
Foo<T>::Foo(const T& t0)
{
}
template <class T>
Foo<T>::Foo(const T& t0, const T& t1)
{
}
template Foo<int>::Foo(const int& t0);
int main (void) {
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment