mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
750a527100
Added regression tests that check cc65's handling of void variables.
12 lines
201 B
C
12 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);
|
|
}
|