✓
Passing This code compiles and runs correctly.
Code
// Test 614: CCP Flag Without Import
// Verifies that --ccp flag alone doesn't inject CCP (need import too)
// Demonstrates self-governing features: flag without declared intent = no action
const std = @import("std");
~tor greet { name: string } -> string
~proc greet|zig {
std.debug.print("Hello, {s}!\n", .{name});
return "Hello!";
}
~greet(name: "NoImport")
Actual
Hello, NoImport!
Flows
flow ~greet click a branch to expand · @labels scroll to their anchor
greet (name: "NoImport")
Test Configuration
MUST_RUN
Compiler Flags:
--ccp