blob: b0a02d2c6c4eea25bbb94387c9b560ae5b716dd9 [file] [log] [blame]
// Build don't link:
template <int i> class C {};
template <template <long> class TT> class D {};
int main()
{
D<C> d; // ERROR - args not match
}