diff options
Diffstat (limited to 'testsuite/synth/issue945/ent.vhdl')
-rw-r--r-- | testsuite/synth/issue945/ent.vhdl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/synth/issue945/ent.vhdl b/testsuite/synth/issue945/ent.vhdl new file mode 100644 index 000000000..ff2ce407f --- /dev/null +++ b/testsuite/synth/issue945/ent.vhdl @@ -0,0 +1,9 @@ +entity ent is +end ent; + +architecture a of ent is + signal test : bit; + alias a1 : bit is test; + alias a2 : bit is a1; +begin +end a; |