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