shift.c revision d7d5f0223bd30dfd618762349c6209dd1d5ea3e6
1// RUN: clang-cc -fsyntax-only %s
2
3void test() {
4  char c;
5  c <<= 14;
6}
7