[ create a new paste ] login | about

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

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

class WontCompile3{
  static const std::string s = "Yo";
};

int main(){}


Output:
1
2
Line 4: error: invalid in-class initialization of static data member of non-integral type 'const std::string'
compilation terminated due to -Wfatal-errors.


Create a new paste based on this one


Comments: