mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-17 00:10:31 +03:00
11 lines
102 B
Idris
11 lines
102 B
Idris
|
module Holes
|
||
|
|
||
|
int : Int
|
||
|
int = ?a
|
||
|
|
||
|
nat : Nat
|
||
|
nat = ?b
|
||
|
|
||
|
equal : cast Holes.int === Holes.nat
|
||
|
equal = ?c
|