다음을 통해 공유


컴파일러 오류 C2139

'type': 정의되지 않은 클래스는 컴파일러 내장 형식 특성 'trait'에 대한 인수로 허용되지 않습니다.

잘못된 인수가 형식 특성에 전달되었습니다.

설명

자세한 내용은 형식 특성에 대한 컴파일러 지원을 참조하세요.

예시

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

// C2139.cpp
// compile with: /EHsc
#include <iostream>
using namespace std;

template <class T>
struct is_polymorphic {
   static const bool value = __is_polymorphic(T);
};

class C;
class D {};

class E {
public:
   virtual void Test() {}
};

int main() {
   cout << is_polymorphic<C>::value << endl;   // C2139
   cout << is_polymorphic<D>::value << endl;   // OK
   cout << is_polymorphic<E>::value << endl;   // OK
}