Commit d52dae61 by Jason Merrill

new

From-SVN: r17764
parent bd0f14dc
// Build don't link:
template <class T> struct B { static const int i = 3; };
template <class T> struct A { static const int i = B<T>::i; };
enum { i = A<int>::i };
// Build don't link:
template <typename _CharT>
struct moneypunct
{
moneypunct ();
};
template <>
moneypunct<char>::moneypunct ();
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