1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-02 04:41:35 +00:00

added test related to pr #1135

This commit is contained in:
mrdudz 2020-08-18 00:41:35 +02:00
parent 6d8860b9de
commit 2663561c62

8
test/err/pr1135.c Normal file
View File

@ -0,0 +1,8 @@
void f(void) {}
void f(int); /* Should fail */
int main(void)
{
return 0;
}