mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +03:00
16 lines
167 B
Idris
16 lines
167 B
Idris
|
module AutoSearchHide1
|
||
|
|
||
|
public export
|
||
|
interface A where
|
||
|
Value : Nat
|
||
|
|
||
|
public export
|
||
|
[ZeroA] A where
|
||
|
Value = 0
|
||
|
|
||
|
public export
|
||
|
%hint
|
||
|
HintZeroA : A
|
||
|
HintZeroA = ZeroA
|
||
|
|