fork download
  1. class A
  2. {
  3. public:
  4. class Impl *pimpl;
  5. };
  6.  
  7. class Impl
  8. {
  9.  
  10. };
  11.  
  12. int main() {
  13. Impl i;
  14. A a;
  15. a.pimpl = &i;
  16. return 0;
  17. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
Standard output is empty