blob: 0bd2302fe0057243b9dc4b7605c252a71ae3465a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// PR c++/48046
namespace N1 { typedef int T; } // { dg-message "" }
namespace N2 { typedef float T; } // { dg-message "" }
int main()
{
using namespace N1;
using namespace N2;
static T t; // { dg-error "" }
}
|