019 ccp flag injection

○ Planned This feature is planned but not yet implemented.

BLOCKED: Waiting for opaque annotation support in tap transform

Code

// Test 613: CCP Full Activation (Import + Flag)
// Verifies that BOTH import AND --ccp flag are needed for CCP injection

~import "$std/ccp"

const std = @import("std");

~event greet { name: []const u8 }
| greeting { msg: []const u8 }

~proc greet {
    std.debug.print("Hello, {s}!\n", .{name});
    return .{ .greeting = .{ .msg = "Hello!" } };
}

~greet(name: "Flag")
| greeting |> _
input.kz

Test Configuration

MUST_RUN

Compiler Flags:

--ccp