Change
implement write_frame(s: &state): void = let …
to
implement write_frame(s) = let …
The type for write_frame is already declared in the SATS file.On Wednesday, October 28, 2015 at 4:45:12 PM UTC-4, Mike Jones wrote:
When I structured a function like this:
in sats file
fun write_frame(s: &state): voidin dats file
implement write_frame(s: &state): void = let7454(line=210, offs=25) – 7463(line=210, offs=34): error(2): the function
argument cannot be ascribed refval types.Is this expected to fail to compile?