Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 514 Bytes

compiler-error-c3232.md

File metadata and controls

24 lines (20 loc) · 514 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C3232
Compiler Error C3232
11/04/2016
C3232
C3232
3119b3a9-0eff-4a3f-b805-e4d160af9e39

Compiler Error C3232

'param' : a generic type parameter cannot be used in a qualified name

A generic type parameter was used incorrectly.

The following sample generates C3232:

// C3232.cpp
// compile with: /clr
generic <class T>
ref class C {
   typename T::TYPE t;   // C3232
};