다음을 통해 공유


컴파일러 오류 C2052

'type': 대/소문자 식에 잘못된 형식

대/소문자 식은 정수 상수여야 합니다.

다음 샘플에서는 C2052를 생성합니다.

// C2052.cpp
int main() {
   int index = 0;
   switch (index) {
      case 1:
         return 24;
      case 1.0:   // C2052
      // try the following line instead
      // case 2:
         return 23;
   }
}