blob: 02f16b69950765c0272effff75e1221e88433b5b [file] [log] [blame]
// Build don't link:
// Origin: Ian Nixon <ian@tharas.com>
struct A {};
template<class M, class T = A, class C> class Tc {}; // ERROR - no defarg
int main ()
{
Tc<int> oops; // ERROR - using template
}