2015-06-30 01:12:09 +08:00
|
|
|
# RUN: %python -m artiq.compiler.typing +diag %s >%t
|
2015-06-26 23:53:20 +08:00
|
|
|
# RUN: OutputCheck %s --file-to-check=%t
|
|
|
|
|
|
|
|
a = 1
|
|
|
|
# CHECK-L: ${LINE:+1}: error: the width argument of int() must be an integer literal
|
|
|
|
int(1.0, width=a)
|
|
|
|
|
|
|
|
# CHECK-L: ${LINE:+1}: error: the argument of len() must be of an iterable type
|
|
|
|
len(1)
|
|
|
|
|
2015-06-27 00:14:24 +08:00
|
|
|
# CHECK-L: ${LINE:+1}: error: the argument of list() must be of an iterable type
|
|
|
|
list(1)
|
|
|
|
|
2015-06-26 23:53:20 +08:00
|
|
|
# CHECK-L: ${LINE:+1}: error: an argument of range() must be of a numeric type
|
|
|
|
range([])
|