feat: add warning when applying global attribute using in#13223
Merged
wkrozowski merged 4 commits intoleanprover:masterfrom Apr 8, 2026
Merged
feat: add warning when applying global attribute using in#13223wkrozowski merged 4 commits intoleanprover:masterfrom
attribute using in#13223wkrozowski merged 4 commits intoleanprover:masterfrom
Conversation
Contributor
Author
|
!bench |
|
Benchmark results for f92b7f3 against 48800e4 are in. There are no significant changes. @wkrozowski
Small changes (2🟥)
|
Collaborator
|
Reference manual CI status:
|
mathlib-nightly-testing bot
pushed a commit
to leanprover-community/batteries
that referenced
this pull request
Apr 1, 2026
mathlib-nightly-testing bot
pushed a commit
to leanprover-community/mathlib4-nightly-testing
that referenced
this pull request
Apr 1, 2026
|
Mathlib CI status (docs):
|
f92b7f3 to
48800e4
Compare
mathlib-nightly-testing bot
pushed a commit
to leanprover-community/batteries
that referenced
this pull request
Apr 1, 2026
mathlib-nightly-testing bot
pushed a commit
to leanprover-community/mathlib4-nightly-testing
that referenced
this pull request
Apr 1, 2026
|
Mathlib CI status (docs):
|
4d67b4b to
59d9492
Compare
mathlib-nightly-testing bot
pushed a commit
to leanprover-community/batteries
that referenced
this pull request
Apr 1, 2026
mathlib-nightly-testing bot
pushed a commit
to leanprover-community/mathlib4-nightly-testing
that referenced
this pull request
Apr 1, 2026
leanprover-bot
added a commit
to leanprover/reference-manual
that referenced
this pull request
Apr 1, 2026
|
Mathlib CI status (docs):
|
mathlib-nightly-testing bot
pushed a commit
to leanprover-community/batteries
that referenced
this pull request
Apr 2, 2026
mathlib-nightly-testing bot
pushed a commit
to leanprover-community/mathlib4-nightly-testing
that referenced
this pull request
Apr 2, 2026
leanprover-bot
added a commit
to leanprover/reference-manual
that referenced
this pull request
Apr 2, 2026
|
Mathlib CI status (docs):
|
|
Mathlib CI status (docs):
|
wkrozowski
added a commit
to wkrozowski/lean4
that referenced
this pull request
Apr 10, 2026
…over#13223) This PR adds a warning preventing a user from applying global attribute using `... in ...`, e.g. ```lean4 theorem a : True := trivial attribute [simp] a in def b : True := a ```
wkrozowski
added a commit
to wkrozowski/lean4
that referenced
this pull request
Apr 12, 2026
…over#13223) This PR adds a warning preventing a user from applying global attribute using `... in ...`, e.g. ```lean4 theorem a : True := trivial attribute [simp] a in def b : True := a ```
volodeyka
pushed a commit
that referenced
this pull request
Apr 16, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds a warning preventing a user from applying global attribute using
... in ..., e.g.