Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/gcc.dg/pr70174.c
2023-03-06 14:48:14 +01:00

11 lines
275 B
C

/* PR rtl-optimization/70174 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
struct S { int f : 4; } a;
void
foo (void)
{
a.f = foo; /* { dg-warning "assignment to 'signed char:4' from 'void \\(\\*\\)\\(void\\)' makes integer from pointer without a cast" } */
}