fix(src/kernel/old_type_checker): literals in inductive defs
This commit is contained in:
parent
5955e3fce8
commit
7cb90bedfe
1 changed files with 1 additions and 1 deletions
|
|
@ -254,7 +254,7 @@ expr old_type_checker::infer_type_core(expr const & e, bool infer_only) {
|
|||
case expr_kind::Pi: r = infer_pi(e, infer_only); break;
|
||||
case expr_kind::App: r = infer_app(e, infer_only); break;
|
||||
case expr_kind::Let: r = infer_let(e, infer_only); break;
|
||||
case expr_kind::Lit: r = infer_let(e, infer_only); break;
|
||||
case expr_kind::Lit: r = lit_type(e); break;
|
||||
|
||||
case expr_kind::Quote: throw_found_quote(m_env);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue