-
-
Notifications
You must be signed in to change notification settings - Fork 415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unreported type inference error with Array's in match case statements #4348
Comments
Here's a more minimal example that gives an error: class Fu
fun bar(t: Array[U8] val) =>
match t
| [ U8(1) ] => false
end which results in:
If you remove the type info for the array: class Fu
fun bar(t: Array[U8] val) =>
match t
| [ 1 ] => false
end you get the original error message which is the default "it says there was an error but we got no message for it" message. You can replicate this with the original example by making the following changes: actor Main
new create(env: Env) =>
let t: Array[U8] val = [ 0x00 ; 0x01 ; 0x02 ]
match t
| [ U8(0x00) ; U8(0x00) ; U8(0x00) ] => false
| [ U8(0x00) ; U8(0x01) ; U8(0x02) ] => true
end The missing error message is likely some form of "could not infer literal type, no valid types found" that you get when you do something like: class Fu
fun bar() =>
let x = [ 1 ] but in this case, in the match, it appears we don't give a nice error message for it. |
I wondered if eq ended up involved somehow (and part of the reason I asked about that in a separate thread on zulip). That makes sense. Thanks. So this is going to be a "turn into a compile-time error" type of solution I expect since implementing literal arrays in a match is a problem that is significantly bigger than a breadbox. |
Note this is reproducible with Pony 0.54.1 |
I'm not sure what you mean by "implementing literal array in a match". That isn't the bug here, the bug is that you aren't getting the error message that you should. |
Note this is a variation of #2110 and it appears we missed a case. |
This is hitting if(is_typecheck_error(pattern_type))
return NULL in match.c https://github.com/ponylang/ponyc/blob/main/src/libponyc/expr/match.c#L56 We should never hit a typecheck error here, that it should have been caught before this point and the check is only a sanity check. This should have been caught and handled before we got to the In this particular case, So, the preceeding This is happening because ast->annotation_type; returns NULL in Based on everything here, I'm fairly confident that the "could not infer literal type, no valid types found" should have caught this already and we would never get here. |
Note when using a debug version of the compiler you will get:
as the error message. |
Looking in if(ast_checkflag(match_expr, AST_FLAG_JUMPS_AWAY) ||
is_typecheck_error(match_type))
return false; and the jumps away never gets handled until
so I think for this code it is reasonable that we need to note that we don't have a type as a check after the jumps away check. But I'd like to discuss with @jemc. |
My suggestion: In the |
Edited to put the minimal case up top instead of in the comments.
Running ponyc 0.54.0
Minimal case:
Here's how it looks:
The text was updated successfully, but these errors were encountered: