1 struct NoCtor { 2 NoCtor(); 3 static int i; 4 }; 5 6 int NoCtor::i = 15; 7 main()8 int main() { return NoCtor::i; } 9