Linking fails on operator method imported as @public #2224.

This commit is contained in:
Christoffer Lerno
2025-06-18 23:34:39 +02:00
parent 40ae9d2e55
commit 1b4b9bca94
3 changed files with 36 additions and 0 deletions

View File

@@ -52,6 +52,7 @@
- `x++` and `x--` works on pointer vectors #2222.
- `x += 1` and `x -= 1` works propertly on pointer vectors #2222.
- Fixes to `x += { 1, 1 }` for enum and pointer vectors #2222.
- Linking fails on operator method imported as `@public` #2224.
### Stdlib changes
- Deprecate `String.is_zstr` and `String.quick_zstr` #2188.

View File

@@ -11339,6 +11339,7 @@ bool sema_insert_method_call(SemaContext *context, Expr *method_call, Decl *meth
}
}
ASSERT_SPAN(method_call, parent && parent->type && first == parent->type->canonical);
unit_register_external_symbol(context, method_decl);
if (!sema_expr_analyse_general_call(context, method_call, method_decl, parent, false,
NULL)) return expr_poison(method_call);
method_call->resolve_status = RESOLVE_DONE;

View File

@@ -0,0 +1,34 @@
// #target: macos-x64
module test;
import foo @public;
fn int main()
{
Pos p1 = (Pos){} + 1;
return 0;
}
module foo @private;
typedef Pos = inline uint;
fn Pos Pos.add(pos, uint rhs) @operator(+) => (Pos)((uint)pos + rhs);
/* #expect: test.ll
define i32 @main() #0 {
entry:
%p1 = alloca i32, align 4
%0 = call i32 @foo.Pos.add(i32 0, i32 1)
store i32 %0, ptr %p1, align 4
ret i32 0
}
declare i32 @foo.Pos.add(i32, i32) #0
/* #expect: foo.ll
define i32 @foo.Pos.add(i32 %0, i32 %1) #0 {
entry:
%add = add i32 %0, %1
ret i32 %add
}