mathematics_in_lean_source icon indicating copy to clipboard operation
mathematics_in_lean_source copied to clipboard

bug in 8.1.4. Concrete groups?

Open KunihikoK3 opened this issue 7 months ago • 0 comments

def myGroup := PresentedGroup {.of () ^ 3} deriving Group

gives the error

invalid dotted identifier notation, expected type is not of the form (... → C ...) where C is a constant ?m.50

also see live.lean

def myGroup := PresentedGroup {(FreeGroup.of () : FreeGroup Unit) ^ 3} deriving Group

solves the problem for me

KunihikoK3 avatar Jun 27 '24 04:06 KunihikoK3