Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 562 Bytes

compiler-error-c3644.md

File metadata and controls

25 lines (20 loc) · 562 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C3644
Compiler Error C3644
11/04/2016
C3644
C3644
2e3f6c41-3ec5-4a01-82bc-f11b61ebe68e

Compiler Error C3644

'function' : cannot compile the function to generate managed code

The presence of some keywords in a function will cause the function to be compiled to native.

The following sample generates C3644:

// C3644.cpp
// compile with: /clr
// processor: x86

void __clrcall Func2(int i) {
   __asm {}   // C3644
}