blob: 67b4317c81a834517e5d52d0327dcd103f4686d0 [file] [log] [blame]
template <typename T, typename U>
struct Pair {};
struct Map : public Pair<int, float>, Pair<int, char> {};
template <typename Value>
Value f(Pair<int, Value>*) { return Value(); }
int main() {
f((Map*)0);
}