fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. template<int SIZE>
  5. struct MyClass{
  6. MyClass(int a, int b){}
  7. };
  8.  
  9. class X{
  10. MyClass<10> mcTen = {1, 5};
  11. };
  12.  
  13. int main() {
  14. // your code goes here
  15. return 0;
  16. }
Success #stdin #stdout 0s 3408KB
stdin
Standard input is empty
stdout
Standard output is empty