diff options
Diffstat (limited to 'testsuite/gna/issue1898/scale2.vhdl')
-rw-r--r-- | testsuite/gna/issue1898/scale2.vhdl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/gna/issue1898/scale2.vhdl b/testsuite/gna/issue1898/scale2.vhdl new file mode 100644 index 000000000..88a2a8958 --- /dev/null +++ b/testsuite/gna/issue1898/scale2.vhdl @@ -0,0 +1,10 @@ +entity scale2 is + port(v : in bit_vector(0 to 1); + a : in bit; + w : out bit_vector(0 to 1)); +end entity scale2; + +architecture boop of scale2 is +begin + w <= a and v; +end architecture boop; |