Fix warnings reporting and stdlib warnings #858

Merged
ghallak merged 10 commits from ghallak/fix-stdlib-warnings into master 2022-06-14 17:22:32 +09:00
Showing only changes of commit 1e1c2c1dfd - Show all commits

View File

@ -2,7 +2,7 @@ namespace Func =
function id(x : 'a) : 'a = x
function const(x : 'a) : 'b => 'a = (y) => x
function const(x : 'a) : 'b => 'a = (_) => x
function flip(f : ('a, 'b) => 'c) : ('b, 'a) => 'c = (b, a) => f(a, b)