Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 666 Bytes

File metadata and controls

26 lines (20 loc) · 666 Bytes
title Compiler Error C3161
description Learn more about: Compiler Error C3161
ms.date 11/04/2016
f1_keywords
C3161
helpviewer_keywords
C3161

Compiler Error C3161

'interface' : nesting class, struct, union or interface in an interface is illegal; nesting interface in a class, struct or union is illegal

Remarks

An __interface can only appear at global scope or within a namespace. A class, struct, or union cannot appear in an interface.

Example

The following example generates C3161.

// C3161.cpp
// compile with: /c
__interface X {
   __interface Y {};   // C3161 A nested interface
};