Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
felipensp committed Oct 3, 2024
1 parent bf5f70f commit eebc502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/v/checker/str.v
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fn (mut c Checker) string_inter_lit(mut node ast.StringInterLiteral) ast.Type {
inside_interface_deref_save := c.inside_interface_deref
c.inside_interface_deref = true
for i, mut expr in node.exprs {
mut ftyp := c.unwrap_generic(c.expr(mut expr))
mut ftyp := c.expr(mut expr)
ftyp = c.check_expr_option_or_result_call(expr, ftyp)
if c.comptime.is_comptime_var(expr) {
ctyp := c.comptime.get_comptime_var_type(expr)
Expand Down

0 comments on commit eebc502

Please sign in to comment.