blob: ec5156e0cd0bcba2d9599980b494258bb6693710 [file] [log] [blame]
// { dg-do compile }
#include <typeinfo>
#include <iostream>
struct foo { double f(int); };
int main() {
double f (int);
const std::type_info &r = typeid (f);
std::cout << typeid(f).name() << std::endl;
std::cout << typeid(foo::f).name() << std::endl; /* { dg-error "" } */
}