addr-const1.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 39 行

C
39
字号
// { dg-do run }// Copyright (C) 2003 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 19 Apr 2003 <nathan@codesourcery.com>// PR 9881. address-constant-expression not static initializedstruct bar {  double p;}; // bar    bar v;static bool error = false;struct foo {  static double *a;  static double *b;  static double storage;};struct baz {  baz () {    if (foo::a != &v.p)      error = true;    if (foo::b != &foo::storage)      error = true;  }};baz f; // Get constructor to run before any other non-static initializersdouble *foo::a = &(((bar *)(&v))->p);double *foo::b = &(((bar *)(&foo::storage))->p);double foo::storage = 0.0;int main() {  return error;}

⌨️ 快捷键说明

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