Moved #1098 bug tests from test/misc to test/err as they are fixed now.

This commit is contained in:
acqn
2020-08-07 19:35:37 +08:00
committed by Oliver Schmidt
parent fe44fe963f
commit 8b8561161c
4 changed files with 0 additions and 18 deletions

13
test/err/bug1098a.c Normal file
View File

@@ -0,0 +1,13 @@
/* bug #1098 Empty enumerator-list */
/* The C Standard requires that something exists between the braces for
* enum, struct, and union. */
struct {
};
int main(void)
{
return 0;
}