// { dg-do run }// Example of static member constantsextern"C"intprintf(const char*, ...);struct T {static const char letter ='a';// this is the new stuff!char x[letter];voidf();};void T::f() {printf("%p", &letter); }const char T::letter;// still need def after classintmain() { }