wstrict-aliasing-bogus-base-derived.c

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

C
22
字号
/* { dg-do compile } *//* { dg-options "-O2 -Wstrict-aliasing -fstrict-aliasing" } */class base { public:  int x;};class derived: public base { public:  int y;};base foo () {  derived d;  base* pb = &d;  /* { dg-bogus "base vs. derived" } */  pb->x = 1;  return d;}

⌨️ 快捷键说明

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