-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from SkySkimmer/print-args-delim-tmp
Adapt to coq/coq#20235 (Print/About use `%_` for argument scopes)
- Loading branch information
Showing
2 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
f1 : ∀ {n1 : nat} (n2 : nat), T n2 → T n1 | ||
|
||
f1 is not universe polymorphic | ||
Arguments f1 {n1}%nat_scope n2%nat_scope w | ||
Arguments f1 {n1}%_nat_scope n2%_nat_scope w | ||
f1 is transparent | ||
Expands to: Constant bug_19702.f1 | ||
Declared in library bug_19702, line 6, characters 11-13 | ||
f1 : ∀ {n1 : nat} [n2 : nat], T n2 → T n1 | ||
|
||
f1 is not universe polymorphic | ||
Arguments f1 {n1}%nat_scope [n2]%nat_scope w | ||
Arguments f1 {n1}%_nat_scope [n2]%_nat_scope w | ||
f1 is transparent | ||
Expands to: Constant bug_19702.f1 | ||
Declared in library bug_19702, line 6, characters 11-13 | ||
f1 : ∀ {n1 n2 : nat}, T n2 → T n1 | ||
|
||
f1 is not universe polymorphic | ||
Arguments f1 {n1 n2}%nat_scope w | ||
Arguments f1 {n1 n2}%_nat_scope w | ||
f1 is transparent | ||
Expands to: Constant bug_19702.f1 | ||
Declared in library bug_19702, line 6, characters 11-13 |