Errore del compilatore C2490
'keyword' non consentito nella funzione con attributo 'naked'
Una funzione definita come naked non può usare la gestione strutturata delle eccezioni.
L'esempio seguente genera l'errore C2490:
// C2490.cpp
// processor: x86
__declspec( naked ) int func() {
__try{} // C2490, structured exception handling
}