컴파일러 오류 C2495
'identifier': 'nothrow'는 함수 선언 또는 정의에만 적용할 수 있습니다.
nothrow 확장 특성은 함수 선언 또는 정의에만 적용할 수 있습니다.
다음 샘플에서는 C2495를 생성합니다.
// C2495.cpp
// compile with: /c
__declspec(nothrow) class X { // C2495
int m_data;
} x;
__declspec(nothrow) void test(); // OK