You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(reporting this so that it can be linked to, not really requesting that this should be fixed)
The following code shows some weird interaction between local notation involving variables and the explicitness of said variables in declarations:
variables {G : Type*} {L : G → G}
localprefix ` ◾ `:67 := L
variables (L)
localprefix ` † `:67 := L
lemmaexplicit (p : G) : L p = p :=
sorry-- works as intendedlemmaimplicit (p : G) : ◾p = p :=
sorry-- the variable `L` is an implicit argument to this lemma, but should be explicitvariables {L}
lemmaexplicit2 (p : G) : †p = p :=
sorry-- the variable `L` is an explicit argument to this lemma, but should be implicit#check @explicit
#check @explicit2
#check @implicit
The text was updated successfully, but these errors were encountered:
(reporting this so that it can be linked to, not really requesting that this should be fixed)
The following code shows some weird interaction between local notation involving variables and the explicitness of said variables in declarations:
The text was updated successfully, but these errors were encountered: