Compiler Error C2333

'function' : error in function declaration; skipping function body

This error will occur only after another error and only for member functions defined inside their class.

The following code in a .cpp file will generate C2333:

struct s1 {
   s1(s1) {
   }
};