I'm trying to play the "HoTT Game", and this uses cubical-0.3. When trying to load the first file, however, I get a parse error:
.../cubical-0.3/Cubical/Core/Primitives.agda:37,14: Parse error Set<ERROR> to Type ; Setω ...
which occurs during the renaming of "Set" to "Type". I'm using Agda version 2.6.2-b7da577. I'm confused at what to do here.
Here's some context for those lines:
open import Agda.Primitive public
using ( Level )
renaming ( lzero to ℓ-zero
; lsuc to ℓ-suc
; _⊔_ to ℓ-max
; Set to Type
; Setω to Typeω )
open import Agda.Builtin.Sigma public
I've also opened an issue on cubical itself.
I'm trying to play the "HoTT Game", and this uses cubical-0.3. When trying to load the first file, however, I get a parse error:
.../cubical-0.3/Cubical/Core/Primitives.agda:37,14: Parse error Set<ERROR> to Type ; Setω ...which occurs during the renaming of "Set" to "Type". I'm using Agda version 2.6.2-b7da577. I'm confused at what to do here.
Here's some context for those lines:
I've also opened an issue on cubical itself.