함수 형식에 적용되는 한정자가 의미가 없으므로 무시됩니다.
비고
한정자(예: const)는 에 의해 정의된 함수 형식에 typedef적용됩니다.
예제
다음 예제에서는 C4180을 생성합니다.
// C4180.cpp
// compile with: /W1 /c
typedef int FuncType(void);
// the const qualifier cannot be applied to the
// function type FuncType
const FuncType f; // C4180