using19.c

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

C
22
字号
// Copyright (C) 2007 Free Software Foundation// Contributed by Ollie Wild <aaw@google.com>// { dg-do compile }// C++ Standard, 7.3.3, clause 10:// "Since a using-declaration is a declaration, the restrictions on// declarations of the same name in the same declarative region (3.3) also// apply to using-declarations."namespace M{  union A;  void B();}void A();union B;using M::A;using M::B;

⌨️ 快捷键说明

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