packages feed

Agda-2.3.2.2: test/fail/Issue249.agda

module Issue249 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)