1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #include <algorithm> #include <iostream> template<class C, class T, T C::*x> struct X { }; typedef std::pair<int,int> Pr; X<Pr, int, &Pr::first> var; int main() { std::cout << "hello\n"; } |
I2luY2x1ZGUgPGFsZ29yaXRobT4KI2luY2x1ZGUgPGlvc3RyZWFtPgoKdGVtcGxhdGU8Y2xhc3MgQywgY2xhc3MgVCwgVCBDOjoqeD4Kc3RydWN0IFggeyB9OwoKdHlwZWRlZiBzdGQ6OnBhaXI8aW50LGludD4gUHI7Clg8UHIsIGludCwgJlByOjpmaXJzdD4gdmFyOwogICAgIAppbnQgbWFpbigpCnsKICAgIHN0ZDo6Y291dCA8PCAiaGVsbG9cbiI7Cn0K
-
upload with new input
-
result: Success time: 0s memory: 2724 kB returned value: 0
hello


