mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 10:02:03 +03:00
8 lines
148 B
Idris
8 lines
148 B
Idris
-- https://github.com/idris-lang/Idris2/issues/2448#issuecomment-1117103496
|
|
|
|
%default total
|
|
|
|
boom : Nat -> Void
|
|
boom (S x) = boom x
|
|
boom x = boom x
|