blob: 5a3cc7010748aeabb9a47ea021ad062c8f549565 [file] [log] [blame]
//Special g++ Options: -fhonor-std
namespace std{
int f(){
return 0;
}
}
int f()
{
return 1;
}
int main()
{
return std::f();
}