mirror of
https://github.com/m-labs/artiq.git
synced 2025-02-08 16:43:19 +08:00
35f4449ef2
Before this commit, it displayed incorrect output if an error appeared on 2nd run and beyond, and displayed messages for trying to do "num32 -= num64" that made very little sense.
38 lines
1.6 KiB
Python
38 lines
1.6 KiB
Python
# RUN: %python -m artiq.compiler.testbench.inferencer +diag %s >%t
|
|
# RUN: OutputCheck %s --file-to-check=%t
|
|
|
|
# CHECK-L: ${LINE:+1}: error: expected '<<' operand to be of integer type, not float
|
|
1 << 2.0
|
|
|
|
# CHECK-L: ${LINE:+3}: error: expected every '+' operand to be a list in this context
|
|
# CHECK-L: ${LINE:+2}: note: list of type list(elt=numpy.int?)
|
|
# CHECK-L: ${LINE:+1}: note: numpy.int?, which cannot be added to a list
|
|
[1] + 2
|
|
|
|
# CHECK-L: ${LINE:+1}: error: cannot unify list(elt=numpy.int?) with list(elt=float): numpy.int? is incompatible with float
|
|
[1] + [2.0]
|
|
|
|
# CHECK-L: ${LINE:+3}: error: expected every '+' operand to be a tuple in this context
|
|
# CHECK-L: ${LINE:+2}: note: tuple of type (numpy.int?,)
|
|
# CHECK-L: ${LINE:+1}: note: numpy.int?, which cannot be added to a tuple
|
|
(1,) + 2
|
|
|
|
# CHECK-L: ${LINE:+1}: error: passing tuples to '*' is not supported
|
|
(1,) * 2
|
|
|
|
# CHECK-L: ${LINE:+3}: error: expected '*' operands to be a list and an integer in this context
|
|
# CHECK-L: ${LINE:+2}: note: list operand of type list(elt=numpy.int?)
|
|
# CHECK-L: ${LINE:+1}: note: operand of type list(elt='a), which is not a valid repetition amount
|
|
[1] * []
|
|
|
|
# CHECK-L: ${LINE:+1}: error: cannot coerce list(elt='a) to a numeric type
|
|
[] - 1.0
|
|
|
|
# CHECK-L: ${LINE:+2}: error: the result of this operation has type float, which cannot be assigned to a left-hand side of type numpy.int?
|
|
# CHECK-L: ${LINE:+1}: note: expression of type float
|
|
a = 1; a += 1.0
|
|
|
|
# CHECK-L: ${LINE:+2}: error: the result of this operation has type (numpy.int?, float), which cannot be assigned to a left-hand side of type (numpy.int?,)
|
|
# CHECK-L: ${LINE:+1}: note: expression of type (float,)
|
|
b = (1,); b += (1.0,)
|