aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue857/test.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue857/test.vhdl')
-rw-r--r--testsuite/gna/issue857/test.vhdl11
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/gna/issue857/test.vhdl b/testsuite/gna/issue857/test.vhdl
new file mode 100644
index 000000000..30e99c85e
--- /dev/null
+++ b/testsuite/gna/issue857/test.vhdl
@@ -0,0 +1,11 @@
+entity test is
+end entity;
+
+architecture tb of test is
+begin
+ process
+ begin
+ report to_string(3.0);
+ wait;
+ end process;
+end architecture;