mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +03:00
13 lines
205 B
Idris
13 lines
205 B
Idris
module Search
|
|
|
|
import Language.Reflection
|
|
import Language.Reflection.TTImp
|
|
|
|
%language ElabReflection
|
|
|
|
nothing : Maybe (Not Nat)
|
|
nothing = %runElab (search ?)
|
|
|
|
test : Search.nothing === Nothing
|
|
test = Refl
|