// { dg-do run }// Example of static member constantsextern"C"intprintf(constchar*,...);structT{staticconstcharletter='a';// this is the new stuff!charx[letter];voidf();};voidT::f(){printf("%p",&letter);}constcharT::letter;// still need def after classintmain(){}