mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-19 00:16:29 +08:00
lit-test: fix inferencer/error_class test (broken in b0c6b70
).
This commit is contained in:
parent
2543daa5cf
commit
a04d0f8fbd
@ -8,9 +8,3 @@ class a(1):
|
|||||||
class b:
|
class b:
|
||||||
# CHECK-L: ${LINE:+1}: fatal: class body must contain only assignments and function definitions
|
# CHECK-L: ${LINE:+1}: fatal: class body must contain only assignments and function definitions
|
||||||
x += 1
|
x += 1
|
||||||
|
|
||||||
class c:
|
|
||||||
pass
|
|
||||||
# CHECK-L: ${LINE:+1}: fatal: variable 'c' is already defined
|
|
||||||
class c:
|
|
||||||
pass
|
|
||||||
|
8
lit-test/test/inferencer/error_class_redefine.py
Normal file
8
lit-test/test/inferencer/error_class_redefine.py
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# RUN: %python -m artiq.compiler.testbench.inferencer +diag %s >%t
|
||||||
|
# RUN: OutputCheck %s --file-to-check=%t
|
||||||
|
|
||||||
|
class c:
|
||||||
|
pass
|
||||||
|
# CHECK-L: ${LINE:+1}: fatal: variable 'c' is already defined
|
||||||
|
class c:
|
||||||
|
pass
|
Loading…
Reference in New Issue
Block a user