Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / other / ptrmem5.C
blob2faf6cd2b7e1fcb6347f24b86619aba4f9c45b8f
1 // PR 14123
3 struct a
5   int x[8];
6 };
8 int main()
10   int a::*n[8];
11   n = &a::x; // { dg-error "5:incompatible types in assignment of .int \\(a::\\*\\)" }
12 }