We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 086bb62 commit 7b20b3cCopy full SHA for 7b20b3c
test/EraseType.agda
@@ -29,6 +29,6 @@ testCong = singCong (1 +_) testSingleton
29
{-# COMPILE AGDA2HS testCong #-}
30
31
rTail : ∀ {@0 x xs} → Singleton {a = List Int} (x ∷ xs) → Singleton xs
32
-rTail = singTail
+rTail ys = singTail ys
33
34
{-# COMPILE AGDA2HS rTail #-}
test/golden/EraseType.hs
@@ -16,5 +16,5 @@ testCong :: Int
16
testCong = 1 + testSingleton
17
18
rTail :: [Int] -> [Int]
19
-rTail = \ ys -> tail ys
+rTail ys = tail ys
20
0 commit comments