blob: c7da3eb702574ec4808a97458f839ac7c40cde40 (
plain)
1
2
3
4
5
6
7
8
|
// PR c++/16971
namespace N {
int i; // { dg-message "" }
// By checking for an explicit keyword on the next line we avoid
// matching an ICE message.
int i; // { dg-error "redefinition" }
}
|