diff options
Diffstat (limited to 'test/Sema/unused-expr.c')
-rw-r--r-- | test/Sema/unused-expr.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Sema/unused-expr.c b/test/Sema/unused-expr.c index da3a21fcdd..e9e2992d0a 100644 --- a/test/Sema/unused-expr.c +++ b/test/Sema/unused-expr.c @@ -30,3 +30,8 @@ void t3(int c) { c ? t1() : t2(); } +// This shouldn't warn: the expr at the end of the stmtexpr really is used. +int stmt_expr(int x, int y) { + return ({int _a = x, _b = y; _a > _b ? _a : _b; }); +} + |