Skip to content

Commit

Permalink
Verify old parsing issue is gone (see issue #195)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandervoord committed Oct 30, 2019
1 parent 7615806 commit db98427
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/system/test_compilation/parsing.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,17 @@ typedef struct
} b;
int (*another_function_pointer_in_a_struct) (void);
} another_thing_that_should_get_ignored;

inline int stuff(int num)
{
int reg = 0x12;
if (num > 0)
{
reg |= (0x0Eu);
}
else
{
reg |= (0x07u);
}
return reg;
}

0 comments on commit db98427

Please sign in to comment.