mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
27 lines
472 B
C
27 lines
472 B
C
/*
|
|
!!DESCRIPTION!!
|
|
!!ORIGIN!! testsuite
|
|
!!LICENCE!! Public Domain
|
|
!!AUTHOR!!
|
|
*/
|
|
|
|
/*
|
|
The following code produces an 'Error: Incompatible pointer types' at
|
|
the last line when compiling with snapshot-2.11.9.20080316 without
|
|
optimizations. If I remove the struct inside f() it compiles fine ?!?
|
|
|
|
Best, Oliver
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
void f(void){struct{int i;}d;}
|
|
struct{void(*p)(void);}s={f};
|
|
|
|
int main(void)
|
|
{
|
|
printf("it works :)\n");
|
|
|
|
return 0;
|
|
}
|