Silencing an MSVC C4334 warning ('<<' : result of 32-bit shift implicitly converted...
[oota-llvm.git] / test / TableGen / BitsInitOverflow.td
1 // RUN: not llvm-tblgen %s 2> /dev/null
2
3 def {
4   bits<2> X = 5;  // bitfield is too small, reject
5 }