Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
unexpected token(s) preceding ': or {'; skipping apparent function body
The following sample generates C2334. This error occurs after error C2059:
// C2334.cpp
// compile with: /c
// C2059 expected
struct s1 {
s1 {} // C2334
s1() {} // OK
};