Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 514 Bytes

compiler-error-c2957.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 C2957
Compiler Error C2957
11/04/2016
C2957
C2957
9cb4526f-4af8-47e9-b786-56192627ca72

Compiler Error C2957

'delim' : invalid left delimiter : expected '<'

A generic class was ill formed.

The following sample generates C2957:

// C2957.cpp
// compile with: /clr /LD
generic << class T>   // C2957
// try the following line instead
// generic < class T>
gc class C {};