✓
Passing Passing: the compiler rejects this program as expected.
Code
~import std/io
const std = @import("std");
const File = struct { handle: i32 };
~tor open { path: string } -> *File<opened!>
~proc open|zig {
const f = std.heap.page_allocator.create(File) catch unreachable;
f.* = File{ .handle = 42 };
return f;
}
~tor close { file: *File<!opened> }
~proc close|zig {
std.heap.page_allocator.destroy(file);
}
~tor flush-close { file: *File<!opened> }
~proc flush-close|zig {
std.heap.page_allocator.destroy(file);
}
~open(path: "test.txt")
Actual compiler output
error[KORU030]: Resource '*File' <opened!> has multiple discharge options: close, flush-close. Discharge explicitly.
--> tests/regression/300_ADVANCED_FEATURES/330_PHANTOM_TYPES/330_028_ambiguous_without_default/input.kz:18:0
❌ Compiler coordination error: Auto-discharge failed (multiple disposal options or no disposal event)
(set KORU_BACKEND_TRACE=1 for the backend return trace)Must contain:
multiple discharge optionsFlows
flow ~open click a branch to expand · @labels scroll to their anchor
open (path: "test.txt")
Test Configuration
MUST_ERROR