aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue205/repro.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue205/repro.vhdl')
-rw-r--r--testsuite/gna/issue205/repro.vhdl7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/gna/issue205/repro.vhdl b/testsuite/gna/issue205/repro.vhdl
new file mode 100644
index 000000000..d981e81d0
--- /dev/null
+++ b/testsuite/gna/issue205/repro.vhdl
@@ -0,0 +1,7 @@
+package SortListGenericPkg is
+ generic (
+ type ElementType;
+ function "<"(L : ElementType; R : ElementType) return boolean;
+ function "<="(L : ElementType; R : ElementType) return boolean
+ );
+end package;