(module test_mono_imports_classmod (class Foo (param a) (method foo (type (fn-type (params a) (ret (con Int)))))) (instance (class Foo) (type (con Int)) (method foo (body (lam (params (typed x a)) (ret (con Int)) (body x))))) (fn helper (type (fn-type (params (con Int)) (ret (con Int)))) (params n) (body (app + n 100))))