]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Sema/shift.c
Import Clang, at r72732.
[FreeBSD/FreeBSD.git] / test / Sema / shift.c
1 // RUN: clang-cc -fsyntax-only %s
2
3 void test() {
4   char c;
5   c <<= 14;
6 }