init9.c

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 41 行

C
41
字号
// { dg-do assemble  }// Based on a testcase submitted by Tudor Hulubei <tudor@cs.unh.edu>// X is not a POD because it has a user-defined destructor.// Therefore, we can't cross its initialization.// vector<int> is not even an aggregate; nevertheless, no error is// reported...struct A {  A() {}};void a() {  goto bar; // { dg-error "" } jump from here  A x; // { dg-error "" } jump crosses initialization bar: // { dg-error "" } jump to here  ;}struct X {  ~X() {}};void b() {  goto bar; // { dg-error "" } jump from here  X x; // { dg-error "" } jump crosses initialization bar: // { dg-error "" } jump to here  ;}#include <vector>void c() {  goto bar; // { dg-error "" } jump from here  std::vector<int> x; // { dg-error "" } jump crosses initialization bar: // { dg-error "" } jump to here  ;}

⌨️ 快捷键说明

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