diff options
Diffstat (limited to 'test/FixIt/fixit.c')
-rw-r--r-- | test/FixIt/fixit.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/FixIt/fixit.c b/test/FixIt/fixit.c index 967ae23c18..da1144da0f 100644 --- a/test/FixIt/fixit.c +++ b/test/FixIt/fixit.c @@ -77,3 +77,11 @@ void oopsMoreCommas() { static int b[] = { 3, 4, 5 }, &a == &b ? oopsMoreCommas() : removeUnusedLabels(a[0]); } + +void extraSemicolon(); +{ + void extraSemicolon(); + { + return; + } +} |