fork(1) download
  1. template <typename B, int B::* PTM>
  2. struct A {};
  3.  
  4. struct B
  5. {
  6. int x;
  7.  
  8. typedef A<B, &B::x> a;
  9. };
  10.  
  11. int main() {
  12. B b;
  13. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty