hidden-class11.c

来自「用于进行gcc测试」· C语言 代码 · 共 24 行

C
24
字号
// Copyright (C) 2007 Free Software Foundation// Contributed by Ollie Wild <aaw@google.com>// { dg-do compile }// Verify that a friend class is hidden even if it is hidden by a non-builtin// function name.namespace M {  void F (void);  class F;}namespace N {  void F(void);  class A {    friend class F;  };}using namespace M;using namespace N;class F *b;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?