blob: eadb02be38368fd47a0fea5a61f32c548a223742 [file] [log] [blame]
struct Structure {
int m_field;
void fun() {
// check this
}
};
int main() {
Structure s;
s.m_field = 30;
s.fun();
}