Files
clang-p2996/clang/test/Import/compound-assign-op/Inputs/F.cpp
Raphael Isemann 5440fee09f [ASTImporter] Add test for importing CompoundAssignOperators
Reviewers: a.sidorin, martong

Reviewed By: martong

Subscribers: rnkovacs, cfe-commits, martong

Differential Revision: https://reviews.llvm.org/D50793

llvm-svn: 339918
2018-08-16 18:21:33 +00:00

19 lines
351 B
C++

void f() {
unsigned iadd_eq = 0U;
iadd_eq += 1U;
unsigned isub_eq = 0U;
isub_eq -= 1U;
unsigned imul_eq = 0U;
imul_eq *= 1U;
unsigned idiv_eq = 0U;
idiv_eq /= 1U;
unsigned iand_eq = 0U;
iand_eq &= 1U;
unsigned ixor_eq = 0U;
ixor_eq ^= 1U;
unsigned ilsh_eq = 0U;
ilsh_eq <<= 1U;
unsigned irsh_eq = 0U;
irsh_eq >>= 1U;
}