mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +03:00
75032a7164
* Emit warning for fixities with no export modifiers This is to help update all the existing code to program with explicit fixity export directives in preparation for the behavioral change where they will become private by default.
20 lines
372 B
Idris
20 lines
372 B
Idris
|
|
import Data.String
|
|
|
|
private typebind infixr 0 :-
|
|
private autobind infixr 0 `for`
|
|
|
|
record Container where
|
|
constructor (:-)
|
|
a1 : Type
|
|
a2 : a1 -> Type
|
|
|
|
const : Type -> Type -> Container
|
|
const a b = (_ : a) :- b
|
|
|
|
test : Maybe (List Double)
|
|
test = (_ := ["1", "two", "3"]) `for` Just 3
|
|
|
|
test2 : Maybe (List Double)
|
|
test2 = (_ : String := ["1", "two", "3"]) `for` Just 3
|