1 2 3 4 5 6 7 8 9 10 11 | struct test { test* operator & () {return this;} }; test f() { return test(); } void print(test *x) {} int main() { print(&f()); print(&test()); } |
c3RydWN0IHRlc3QgeyAKdGVzdCogb3BlcmF0b3IgJiAoKQp7cmV0dXJuIHRoaXM7fQp9Owp0ZXN0IGYoKSB7IHJldHVybiB0ZXN0KCk7IH0Kdm9pZCBwcmludCh0ZXN0ICp4KSB7fQppbnQgbWFpbigpCnsKICAgIHByaW50KCZmKCkpOwogICAgcHJpbnQoJnRlc3QoKSk7Cn0=
-
upload with new input
-
result: Success time: 0.01s memory: 2720 kB returned value: 0


