mirror of https://github.com/YosysHQ/yosys.git
6 lines
159 B
Plaintext
6 lines
159 B
Plaintext
|
# Check that we spot mismatched brackets
|
||
|
logger -expect error "Mismatched brackets in macro argument: \[ and }." 1
|
||
|
read_verilog <<EOT
|
||
|
`define foo(x=[1,2})
|
||
|
EOT
|