fork download
  1.  
  2. template <const char **name> class Super
  3. {
  4. };
  5.  
  6. const char *hello = "hello";
  7. const char *world = "world";
  8.  
  9. class Object : Super<&hello>, Super<&world>
  10. {
  11. };
  12.  
  13. int main()
  14. {
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 4724KB
stdin
Standard input is empty
stdout
Standard output is empty