frame_transpiler
frame_transpiler copied to clipboard
References to nonexistent classes parses.
Expected: For Calc not to be found and generate an error.
fn main {
print(#Calc.add(1,1))
print(#Calc.sub(1,1))
}
#BadSystem
-operations-
#[static]
add [a,b] {
^(a+b)
}
#[static]
sub [a,b] {
^(a-b)
}
##