pull/842/head
whitequark 2017-10-03 05:49:50 +00:00
parent ca254ec55e
commit fd3a09dd4d
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ from artiq.experiment import *
@kernel
def entrypoint():
a = [1,2]
# CHECK-L: ${LINE:+2}: error: values cannot be mutated in-place
# CHECK-L: ${LINE:+2}: error: lists cannot be mutated in-place
# CHECK-L: ${LINE:+1}: note: try using `a = a + [3,4]`
a += [3,4]