packed3.c
来自「linux下编程用 编译软件」· C语言 代码 · 共 26 行
C
26 行
// { dg-do compile }// Copyright (C) 2003 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 15 Jul 2003 <nathan@codesourcery.com>// Packed fields are unsuitable for direct reference binding.struct Unpacked { int i; };void Ref (int &p);void Ref (Unpacked &p);struct __attribute__ ((packed)) Packed{ char c; int i; Unpacked u;};void Foo (Packed &p){ Ref (p.i); // { dg-error "cannot bind packed field" "" { target { ! default_packed } } } Ref (p.u.i); // { dg-error "cannot bind packed field" "" { target { ! default_packed } } } Ref (p.u); // { dg-error "cannot bind packed field" "" { target { ! default_packed } } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?