aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/libghdl/examples/comments/enumlit_2.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/pyunit/libghdl/examples/comments/enumlit_2.vhdl')
-rw-r--r--testsuite/pyunit/libghdl/examples/comments/enumlit_2.vhdl8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/pyunit/libghdl/examples/comments/enumlit_2.vhdl b/testsuite/pyunit/libghdl/examples/comments/enumlit_2.vhdl
new file mode 100644
index 000000000..44aa71d7d
--- /dev/null
+++ b/testsuite/pyunit/libghdl/examples/comments/enumlit_2.vhdl
@@ -0,0 +1,8 @@
+package p is
+ type state_t is
+ (
+ s1,
+ s2,
+ -- Comment for :s3:
+ s3);
+end p;