diff options
| author | Emilio Jesus Gallego Arias | 2018-10-11 21:54:34 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-10-11 21:54:34 +0200 |
| commit | 798ec1e76e21582735632927271818153169ced7 (patch) | |
| tree | 305bcbc37486d6d9a5038dc9a969542b98ebc89e /test-suite/output/PrintModule.v | |
| parent | ca0f034f5b26132f540e0018db09046d8efc5be9 (diff) | |
| parent | 8abdd1f3d29f8fb0c47588869086cf5531dbc733 (diff) | |
Merge PR #8594: Miscellaneous refinements and cleaning of module printing
Diffstat (limited to 'test-suite/output/PrintModule.v')
| -rw-r--r-- | test-suite/output/PrintModule.v | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/output/PrintModule.v b/test-suite/output/PrintModule.v index 5f30f7cda6..54ef305be4 100644 --- a/test-suite/output/PrintModule.v +++ b/test-suite/output/PrintModule.v @@ -1,3 +1,5 @@ +(* Bug #2169 *) + Module FOO. Module M. @@ -12,6 +14,10 @@ Module N : S with Definition T := nat := M. Print Module N. +Set Short Module Printing. +Print Module N. +Unset Short Module Printing. + End FOO. Module BAR. @@ -31,8 +37,14 @@ Module N : S with Module T := K := M. Print Module N. +Set Short Module Printing. +Print Module N. +Unset Short Module Printing. + End BAR. +(* Bug #4661 *) + Module QUX. Module Type Test. |
