pointer-arith-4.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 42 行
C
42 行
/* Test diagnostics for arithmetic on void and function pointers. Test with -pedantic-errors. *//* Origin: Joseph Myers <joseph@codesourcery.com> *//* { dg-do compile } *//* { dg-options "-pedantic-errors" } */void *p;void (*f)(void);voidg (void){ p + 0; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */ p + 1; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */ 0 + p; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */ 1 + p; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */ p - 0; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */ p - 1; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */ p += 0; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */ p += 1; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */ p -= 0; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */ p -= 1; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */ f + 0; /* { dg-error "error: pointer to a function used in arithmetic" } */ f + 1; /* { dg-error "error: pointer to a function used in arithmetic" } */ 0 + f; /* { dg-error "error: pointer to a function used in arithmetic" } */ 1 + f; /* { dg-error "error: pointer to a function used in arithmetic" } */ f - 0; /* { dg-error "error: pointer to a function used in arithmetic" } */ f - 1; /* { dg-error "error: pointer to a function used in arithmetic" } */ f += 0; /* { dg-error "error: pointer to a function used in arithmetic" } */ f += 1; /* { dg-error "error: pointer to a function used in arithmetic" } */ f -= 0; /* { dg-error "error: pointer to a function used in arithmetic" } */ f -= 1; /* { dg-error "error: pointer to a function used in arithmetic" } */ p[0]; /* { dg-warning "warning: dereferencing 'void \\*' pointer" } */ /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" "array 1" { target *-*-* } 33 } */ 0[p]; /* { dg-warning "warning: dereferencing 'void \\*' pointer" } */ /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" "array 1" { target *-*-* } 35 } */ f[0]; /* { dg-error "error: subscripted value is pointer to function" } */ 0[f]; /* { dg-error "error: subscripted value is pointer to function" } */ p - p; /* { dg-error "error: pointer of type 'void \\*' used in subtraction" } */ f - f; /* { dg-error "error: pointer to a function used in subtraction" } */}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?