packages feed

Agda-2.3.2.2: test/succeed/Issue251.agda

module Issue251 where

record Foo : Set₁ where
  field
    A : Set
    B : Set

foo : Set → Set → Foo
foo = λ A B → record {A = A; B = B}