Skip to content
Snippets Groups Projects
Commit 092fb829 authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[tests] remove useless anonymous typedef

parent d0ece096
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
STDOPT: #"-main f" STDOPT: #"-main f"
*/ */
typedef enum counter {ZERO,ONE,TWO,LAST=TWO}; enum counter {ZERO,ONE,TWO,LAST=TWO};
int t [LAST + 1] = { 1 }; int t [LAST + 1] = { 1 };
int u [TWO + 1] = { 2 }; int u [TWO + 1] = { 2 };
......
[kernel] Parsing enum.i (no preprocessing) [kernel] Parsing enum.i (no preprocessing)
[kernel:parser:unnamed-typedef] enum.i:5: Warning: typedef without a name
[eva] Analyzing a complete application starting at f [eva] Analyzing a complete application starting at f
[eva] Computing initial state [eva] Computing initial state
[eva] Initial state computed [eva] Initial state computed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment