repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr71248.C
blob
e996351a348951e67bf4a1ae0bfc8ad05671d49f
1
// PR c++/71248
2
// { dg-do compile { target c++11 } }
3
4
struct S
5
{
6
int a;
7
static int S::*typeMembers[] = { // { dg-error "20:in-class initialization" }
8
&S::a,
9
};
10
};