blob: a7363013f3b698a437df48af003043e7c451c72f [file] [log] [blame]
// Build don't link:
// Overly simplified from testcase by "B. K. Oxley" <binkley@bigfoot.com>
template<class P, class Q> struct foo {
typedef P parent_type;
friend parent_type; // ERROR - template parameters cannot be friends
friend Q; // ERROR - template parameters cannot be friends
};