mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +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
|
|
|