clean
This commit is contained in:
parent
fcff163a9a
commit
83d972f0b4
2 changed files with 5 additions and 7 deletions
|
@ -1,11 +1,11 @@
|
|||
def foo() -> u32:
|
||||
return 0
|
||||
return 0
|
||||
|
||||
def bar() -> (u32, u32):
|
||||
return 0, 0
|
||||
return 0, 0
|
||||
|
||||
|
||||
def main(u32[1] a, u32 b):
|
||||
a[0] = foo()
|
||||
a[0], b = bar()
|
||||
return
|
||||
a[0] = foo()
|
||||
a[0], b = bar()
|
||||
return
|
|
@ -237,8 +237,6 @@ fn check_with_arena<'ast, T: Field, E: Into<imports::Error>>(
|
|||
let typed_ast = Checker::check(compiled)
|
||||
.map_err(|errors| CompileErrors(errors.into_iter().map(CompileError::from).collect()))?;
|
||||
|
||||
println!("{}", typed_ast);
|
||||
|
||||
let main_module = typed_ast.main.clone();
|
||||
|
||||
// analyse (unroll and constant propagation)
|
||||
|
|
Loading…
Reference in a new issue