fully qualify symbols (with the module name) in generated IR

This commit is contained in:
Folkert 2020-11-10 20:15:59 +01:00
parent 6490956a84
commit acbb4c29b8
7 changed files with 10 additions and 10 deletions

View file

@ -3,7 +3,7 @@ use roc_std::RocList;
use std::time::SystemTime;
extern "C" {
#[link_name = "quicksort_1_exposed"]
#[link_name = "Main_quicksort_1_exposed"]
fn quicksort(list: RocList<i64>, output: &mut RocCallResult<RocList<i64>>) -> ();
}