Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 479 Bytes

compiler-error-c3554.md

File metadata and controls

18 lines (15 loc) · 479 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C3554
Compiler Error C3554
11/04/2016
C3554
C3554
aede18d5-fefc-4da9-9b69-adfe90bfa742

Compiler Error C3554

'decltype' cannot be combined with any other type-specifier

You cannot qualify the decltype() keyword with any type specifier. For example, the following code fragment yields error C3554.

int x;
unsigned decltype(x); // C3554