err test for struct with duplicate member

This commit is contained in:
bbbradsmith 2023-05-03 21:09:03 -04:00
parent 56c715af40
commit 84eafb7f9c
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
/* Ensure that a duplicate member in a struct produces an error.
** https://github.com/cc65/cc65/issues/2015
*/
struct bads {
int a;
int a; /* this is an error */
};
union badu {
int a, a; /* also an error */
};
int main(void)
{
return 0;
}