mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 01:24:10 +00:00
This would previously complain about an undefined internal macro if the unapplied macro had not already been used. If it had, it would incorrectly use the arguments from the previous invocation.
6 lines
162 B
Plaintext
6 lines
162 B
Plaintext
logger -expect error "Expected to find '\(' to begin macro arguments for 'foo', but instead found '\\x0a'" 1
|
|
read_verilog -sv <<EOT
|
|
`define foo(a=1) (a)
|
|
`foo
|
|
EOT
|