diff options
Diffstat (limited to 'testsuite/gna/bug23482/test1.vhdl')
-rw-r--r-- | testsuite/gna/bug23482/test1.vhdl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/gna/bug23482/test1.vhdl b/testsuite/gna/bug23482/test1.vhdl new file mode 100644 index 000000000..034c732a1 --- /dev/null +++ b/testsuite/gna/bug23482/test1.vhdl @@ -0,0 +1,8 @@ +entity test is end entity; + +architecture arch of test is + signal b:bit; + alias bit_base is bit'base; + -- alias b_stable is b'stable; +begin +end architecture; |