blob: 937ea96aa80a41edc5c4019be1438b62b8e75e14 [file] [log] [blame]
struct O {
template <typename T>
struct I {
I (int);
};
};
template <typename T>
void f() {
typename ::O::I<int>(3);
}