⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eb69.c

📁 this is a gcc file, you can download it and learn its usetility, for further detail please look at t
💻 C
字号:
// Test that g++ complains about referring to a builtin type in a// mem-initializer.// Contributed by Kevin Buhr <buhr@stat.wisc.edu>int r = 0;struct foo {		        // ERROR - candidate  foo(int x) { r = 1; }		// ERROR - candidate};struct bar : foo {  typedef int an_int;  bar() : bar::an_int(3) {}	// ERROR - not a base};intmain() {  bar b;  return r;}

⌨️ 快捷键说明

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