1
1
mirror of https://github.com/github/semantic.git synced 2024-12-29 09:55:52 +03:00

Augmented assignment test fixture

This commit is contained in:
Rick Winfrey 2017-06-06 17:04:31 -07:00
parent 2fef12149b
commit ffc225d75b
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,4 @@
a += 1
b >>= 2
c //= 1

View File

@ -0,0 +1,4 @@
a >>= 2
d //= 1
b += 1