Changeset d60a4c2 for tests/variableDeclarator.cfa
- Timestamp:
- Jan 11, 2025, 5:48:46 PM (8 months ago)
- Branches:
- master
- Children:
- f886608
- Parents:
- 7d65715f (diff), 32a119e9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/variableDeclarator.cfa
r7d65715f rd60a4c2 93 93 int (f66)(int); 94 94 95 #pragma GCC diagnostic push 96 #pragma GCC diagnostic ignored "-Wignored-qualifiers" 97 95 98 int * f67(int); 96 99 int ** f68(int); … … 112 115 int (*(* const f80)(int))(); 113 116 int (* const(* const f81)(int))(); 117 118 #pragma GCC diagnostic pop 114 119 115 120 // errors … … 166 171 [int] cf66(int); 167 172 173 #pragma GCC diagnostic push 174 #pragma GCC diagnostic ignored "-Wignored-qualifiers" 175 168 176 [* int] cf67(int); 169 177 [* * int] cf68(int); 170 178 [const * * int] cf69(int); 171 179 [const * const * int] cf70(int); 180 181 #pragma GCC diagnostic pop 172 182 173 183 // function pointer … … 177 187 178 188 //Dummy main 179 int main( int argc, char const * argv[]) {180 #pragma GCC warning "Compiled" // force non-empty .expect file, NO TABS!!!189 int main() { 190 printf("done\n"); 181 191 } 182 192
Note:
See TracChangeset
for help on using the changeset viewer.