Change constructor visibility to global.

Constructors are always effectively global.
This commit is contained in:
Danila Fedorin 2020-09-10 20:11:42 -07:00
parent 8bf67c7dc3
commit 1f3c42fc44
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ void definition_data::insert_constructors() const {
type_scheme_ptr full_scheme(new type_scheme(std::move(full_type)));
full_scheme->forall.insert(full_scheme->forall.begin(), vars.begin(), vars.end());
env->bind(constructor->name, full_scheme);
env->bind(constructor->name, full_scheme, visibility::global);
}
}