mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-18 00:31:57 +03:00
50c60185a7
Co-authored-by: Guillaume ALLAIS <guillaume.allais@ens-lyon.org>
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
|
|
|