[ create a new paste ] login | about

Link: http://codepad.org/xJNWHRcq    [ raw code | fork ]

C++, pasted on Apr 3:
1
2
3
4
5
6
7
8
9
10
#include <string>

class WillCompile{
  static const std::string s;
};

int main(){}

// in some other file
const std::string WillCompile::s = "Yo";


Output:
No errors or program output.


Create a new paste based on this one


Comments: