diff options
Diffstat (limited to 'clang/test/SemaCXX/shift.cpp')
| -rw-r--r-- | clang/test/SemaCXX/shift.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/shift.cpp b/clang/test/SemaCXX/shift.cpp new file mode 100644 index 00000000000..c5e50128c94 --- /dev/null +++ b/clang/test/SemaCXX/shift.cpp @@ -0,0 +1,14 @@ +// RUN: %clang_cc1 -Wall -Wshift-sign-overflow -ffreestanding -fsyntax-only -verify %s + +#include <limits.h> + +#define WORD_BIT (sizeof(int) * CHAR_BIT) + +template <int N> void f() { + (void)(N << 30); // expected-warning {{the promoted type of the shift expression is 'int'}} + (void)(30 << N); // expected-warning {{the promoted type of the shift expression is 'int'}} +} + +void test() { + f<30>(); // expected-note {{instantiation}} +} |

