New test.

From-SVN: r18847
This commit is contained in:
Mark Mitchell 1998-03-26 14:22:54 +00:00
parent b3e4ff59a3
commit a9c3c9a520

View File

@ -0,0 +1,20 @@
// Build don't link:
typedef const int cint;
template<class T>
class A
{
public:
T f(cint i);
};
template <class T>
T A<T>::f(cint i)
{
}
int main()
{
A<int> a;
}