Agda-2.3.2.2: test/fail/WrongHidingInApplication.agda
module WrongHidingInApplication where
id : (A : Set) -> A -> A
id A x = x
foo : (A : Set) -> A -> A
foo A x = id {A} x
module WrongHidingInApplication where
id : (A : Set) -> A -> A
id A x = x
foo : (A : Set) -> A -> A
foo A x = id {A} x