Skip to content
This repository was archived by the owner on Apr 14, 2020. It is now read-only.

Commit 34e52e8

Browse files
committed
Fix Qualified<Type> -> Qualified<Type, Name>
1 parent ad79adb commit 34e52e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

repl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fn compile_expr(prelude: &Assembly, expr_str: &str) -> Assembly {
3838
}
3939

4040
///Finds the main function and if it is an IO function, adds instructions to push the "RealWorld" argument
41-
fn find_main(assembly: &Assembly) -> (~[Instruction], Qualified<Type>) {
41+
fn find_main(assembly: &Assembly) -> (~[Instruction], Qualified<Type, Name>) {
4242
assembly.superCombinators.iter()
4343
.find(|sc| sc.name == Name { name: intern("main"), uid: 0 })
4444
.map(|sc| {

0 commit comments

Comments
 (0)