✓
Passing Passing: the compiler rejects this program as expected.
Code
// Test: a contradictory &-meet is a loud KORU-layer refusal, never a
// last-wins override. `>20000` and `<=1000` meet to an empty interval;
// the transform names the two bounds that disagree.
//
// Expected: the compile refuses with "refines to nothing" (EXPECT).
import std/proto
import std/refine
std/proto(Server) {
port: i64
}
std/refine(Server) {
port: i64 & >20000 & <=1000
}
Actual compiler output
error[KORU205]: std/refine(Server): field 'port' refines to nothing — '>20000' and '<=1000' cannot both hold
--> tests/regression/600_STDLIB/671_REFINE/671_002_refine_conflict_refused/input.k:13:0Must contain:
refines to nothingFlows
flow ~std/proto click a branch to expand · @labels scroll to their anchor
std/proto (Server, source: port: i64)
flow ~std/refine click a branch to expand · @labels scroll to their anchor
std/refine (Server, source: port: i64 & >20000 & <=1000)
Test Configuration
MUST_ERROR