mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-15 22:32:19 +03:00
21f2913527
Given we keep getting tripped up by this, here we go: * Namespaces * Data names * Record names * Data constructor names (except for operators) * Record constructor names (except for operators) * Interface constructor names (except for operators)
6 lines
62 B
Idris
6 lines
62 B
Idris
infix 3 #
|
|
|
|
data T : Type where
|
|
(#) : T -> T -> T
|
|
leaf : T
|