aboutsummaryrefslogtreecommitdiff
path: root/testcases/typedef4.c
diff options
context:
space:
mode:
Diffstat (limited to 'testcases/typedef4.c')
-rw-r--r--testcases/typedef4.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/testcases/typedef4.c b/testcases/typedef4.c
deleted file mode 100644
index 0aeb0f4..0000000
--- a/testcases/typedef4.c
+++ /dev/null
@@ -1,10 +0,0 @@
-typedef struct I I;
-int incomp(I a);
-struct I { int i, j; };
-int incomp(I a) {}
-typedef int b;
-int main() {
- I i;
- b b;
- incomp(i);
-}