Skip to content

Commit

Permalink
Remove unused types from test
Browse files Browse the repository at this point in the history
  • Loading branch information
ollef committed Mar 25, 2024
1 parent f86c5da commit 1997036
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/singles/type-checking/array-append.vix
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ add : Nat -> Nat -> Nat
add Z n = n
add (S m) n = S (add m n)

data Unit = Unit
data Product A B = Product A B

data Vector n A where
Nil : Vector Z A
Cons : forall n. A -> Vector n A -> Vector (S n) A
Expand Down

0 comments on commit 1997036

Please sign in to comment.