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