lean4-htt/tests/lean/over_notation.lean.expected.out
Sebastian Ullrich e3bfd90b06 fix(frontends/lean/elaborator): default recover_from_error to false for most commands
Fixes #1446

fix(frontends/lean/util): quoting private name

uncovered by now failing run test
2017-03-09 20:51:35 -08:00

26 lines
597 B
Text

f 0 1 : nat
g "a" "b" : string
over_notation.lean:11:10: error: none of the overloads are applicable
error for g
type mismatch at application
g tt
term
tt
has type
bool
but is expected to have type
string
error for f
type mismatch at application
f tt
term
tt
has type
bool
but is expected to have type
nat
Additional information:
over_notation.lean:11:10: context: switched to basic overload resolution where arguments are elaborated without any information about the expected type because expected type was not available
f 1 (f 2 (f 3 0)) : nat
g "a" (g "b" (g "c" "")) : string