Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
tc1
/
dr48.C
blob: 19c1738782235fcece512210253e6a01c8a72722 [
file
] [
log
] [
blame
]
// { dg-do link }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR48: Definitions of unused static members
struct
A
{
static
const
int
size
=
10
;
int
array
[
size
];
};
int
main
()
{
A a
;
return
0
;
}