750a527100
Added regression tests that check cc65's handling of void variables.
11 lines
201 B
C
11 lines
201 B
C
/*
|
|
!!DESCRIPTION!! Size of void cast
|
|
!!ORIGIN!! cc65 regression tests
|
|
!!LICENCE!! Public Domain
|
|
!!AUTHOR!! Greg King
|
|
*/
|
|
|
|
unsigned test (void)
|
|
{
|
|
return sizeof ((void)12345);
|
|
}
|