URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [parse/] [ambig6.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/48046
namespace N1 { typedef int T; } // { dg-error "" }
namespace N2 { typedef float T; } // { dg-error "" }
int main()
{
using namespace N1;
using namespace N2;
static T t; // { dg-error "" }
}
Go to most recent revision | Compare with Previous | Blame | View Log