diff options
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 000000000..5092254f5 --- /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;
+
|