packages feed

Agda-2.3.2.2: test/fail/Issue249-2.agda

module Issue249-2 where

postulate
  A B : Set

module A where
  X = A
  Y = B

-- open A renaming (X to C; Y to C)

open A using (X) renaming (Y to X)