diff options
author | Tristan Gingold | 2015-09-10 20:36:32 +0200 |
---|---|---|
committer | Tristan Gingold | 2015-09-10 20:36:32 +0200 |
commit | b195da2af5c575b246e73753dd2c0cab5b1f995c (patch) | |
tree | 8b48113226cae4d5a7b1b45e52fd34fef4a95e6d /testsuite/gna/ticket93/test.vhd | |
parent | a5cf8c93a36d004577d92a951ea081682840dcd1 (diff) | |
download | ghdl-b195da2af5c575b246e73753dd2c0cab5b1f995c.tar.gz ghdl-b195da2af5c575b246e73753dd2c0cab5b1f995c.tar.bz2 ghdl-b195da2af5c575b246e73753dd2c0cab5b1f995c.zip |
Add testcase for ticket93.
Diffstat (limited to 'testsuite/gna/ticket93/test.vhd')
-rw-r--r-- | testsuite/gna/ticket93/test.vhd | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/gna/ticket93/test.vhd b/testsuite/gna/ticket93/test.vhd new file mode 100644 index 0000000..5092254 --- /dev/null +++ b/testsuite/gna/ticket93/test.vhd @@ -0,0 +1,15 @@ +entity test is
+end entity test;
+
+entity internal is
+end entity internal;
+architecture arch of internal is begin
+end architecture arch;
+
+architecture first of test is begin
+ test_instantiation : entity work.internal;
+end architecture first;
+
+architecture second of test is begin
+end architecture second;
+
|