Commit a9c3c9a5 by Mark Mitchell

New test.

From-SVN: r18847
parent b3e4ff59
// 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;
}
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