]> granicus.if.org Git - clang/commitdiff
[Diagnostics] Add missing expected warning to test file
authorDavid Bolvansky <david.bolvansky@gmail.com>
Thu, 18 Oct 2018 21:06:14 +0000 (21:06 +0000)
committerDavid Bolvansky <david.bolvansky@gmail.com>
Thu, 18 Oct 2018 21:06:14 +0000 (21:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@344761 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaCXX/enum.cpp

index cfe5760112f6dfcbce14846fc26a074e0a73a9a0..32e509f89e63cb76d344f691dc847046cfcffa05 100644 (file)
@@ -105,7 +105,7 @@ void PR8089() {
 
 // This is accepted as a GNU extension. In C++98, there was no provision for
 // expressions with UB to be non-constant.
-enum { overflow = 123456 * 234567 };
+enum { overflow = 123456 * 234567 }; // expected-warning {{overflow in expression; result is -1106067520 with type 'int'}}
 #if __cplusplus >= 201103L
 // expected-warning@-2 {{not an integral constant expression}}
 // expected-note@-3 {{value 28958703552 is outside the range of representable values}}