mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-12-02 22:43:14 +03:00
fa76f2a78b
We were only doing implicits, so add auto implicits too. It's slightly tricky, because we might also have implicits given of the form @{x} which stands for the next auto implicit. Fixes #50
16 lines
349 B
Idris
16 lines
349 B
Idris
module Temp
|
|
|
|
import Data.List
|
|
|
|
safeHead : (l : List a) -> {auto pr : NonEmpty l} -> a
|
|
safeHead [] = absurd pr
|
|
safeHead (x::xs) = x
|
|
|
|
safeHead1 : (l : List a) -> {auto pr : NonEmpty l} -> a
|
|
safeHead1 @{pr} [] = absurd pr
|
|
safeHead1 (x::xs) = x
|
|
|
|
safeHead2 : (l : List a) -> {auto pr : NonEmpty l} -> a
|
|
safeHead2 @{t} [] = absurd t
|
|
safeHead2 (x::xs) = x
|