diff options
Diffstat (limited to 'testsuite/gna/bug092/t.vhdl')
-rw-r--r-- | testsuite/gna/bug092/t.vhdl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/gna/bug092/t.vhdl b/testsuite/gna/bug092/t.vhdl new file mode 100644 index 000000000..d6850bf56 --- /dev/null +++ b/testsuite/gna/bug092/t.vhdl @@ -0,0 +1,7 @@ +package t is + type str_acc is access string; + + function my_alloc (v : natural) return str_acc; + attribute foreign of my_alloc : function is "VHPIDIRECT"; +end t; + |