fork(5) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. template<typename T>
  5. class C{
  6. public:
  7. const static int x;
  8. };
  9.  
  10. template<>
  11. const int C<int>::x = 4;
  12.  
  13. int main(){
  14. cout << C<int>::x;
  15. }
  16.  
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
4