Issue2733-2.lagda.tex 451 B

123456789101112131415161718192021222324
  1. \documentclass{article}
  2. \usepackage{agda}
  3. \begin{document}
  4. \begin{AgdaAlign}
  5. \begin{code}
  6. module Issue2733-2 where
  7. \end{code}
  8. Indentation should be inserted before \AgdaKeyword{postulate}, but not
  9. before the last occurrence of \AgdaPrimitiveType{Set}, which should be
  10. aligned with the penultimate occurrence of \AgdaPrimitiveType{Set}:
  11. \begin{code}
  12. postulate
  13. A : Set
  14. B : Set →
  15. Set
  16. \end{code}
  17. \end{AgdaAlign}
  18. \end{document}