1struct Structure {2 int m_field;3 void fun() {4 // check this5 }6};7 8int main() {9 Structure s;10 s.m_field = 30;11 s.fun();12}13