diff options
author | Tristan Gingold <tgingold@free.fr> | 2015-05-27 03:52:34 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2015-05-27 03:52:34 +0200 |
commit | 047b277b31f1d830f3fc72933d9fbb388f8cbdd0 (patch) | |
tree | 2eee816d24a601be453cd96903a826fadade9f05 /testsuite/gna/bug23482/test2.vhdl | |
parent | 719f5418c95be27edcdfea5c437d44d2ef8c67de (diff) | |
download | ghdl-047b277b31f1d830f3fc72933d9fbb388f8cbdd0.tar.gz ghdl-047b277b31f1d830f3fc72933d9fbb388f8cbdd0.tar.bz2 ghdl-047b277b31f1d830f3fc72933d9fbb388f8cbdd0.zip |
Testcase for bug23482
Diffstat (limited to 'testsuite/gna/bug23482/test2.vhdl')
-rw-r--r-- | testsuite/gna/bug23482/test2.vhdl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/gna/bug23482/test2.vhdl b/testsuite/gna/bug23482/test2.vhdl new file mode 100644 index 000000000..b03515a4a --- /dev/null +++ b/testsuite/gna/bug23482/test2.vhdl @@ -0,0 +1,8 @@ +entity test2 is end entity; + +architecture arch of test2 is + signal b:bit; + -- alias bit_base is bit'base; + alias b_stable is b'stable; +begin +end architecture; |