diff options
Diffstat (limited to 'testsuite/pyunit/libghdl/examples/comments')
-rw-r--r-- | testsuite/pyunit/libghdl/examples/comments/pkg_inside_2.vhdl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/pyunit/libghdl/examples/comments/pkg_inside_2.vhdl b/testsuite/pyunit/libghdl/examples/comments/pkg_inside_2.vhdl new file mode 100644 index 000000000..ac0c0240a --- /dev/null +++ b/testsuite/pyunit/libghdl/examples/comments/pkg_inside_2.vhdl @@ -0,0 +1,7 @@ +-- As packages define public elements like constants, types and sub-programs, we are intrested in such documentation too.:p2: +package p2 is + -- comments in design units (python doc-string style):p2: + -- might be multi line :p2: + + constant unrelated: boolean := True; +end package; |