📄 init9.c
字号:
// Build don't link:// 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; // ERROR - jump from here A x; // ERROR - jump crosses initialization bar: // ERROR - jump to here ;}struct X { ~X() {}};void b() { goto bar; // ERROR - jump from here X x; // ERROR - jump crosses initialization bar: // ERROR - jump to here ;}#include <vector>void c() { goto bar; // ERROR - jump from here std::vector<int> x; // ERROR - jump crosses initialization bar: // ERROR - jump to here ;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -