2025-12-21 05:47:37 +09:00
|
|
|
// json_query_min — minimal quick smoke fixture (VM)
|
|
|
|
|
//
|
|
|
|
|
// This fixture prints a deterministic value for the smoke harness.
|
|
|
|
|
// Unused helper code is intentionally omitted to avoid failing strict JoinIR
|
|
|
|
|
// loop limitations during compilation.
|
2025-09-27 08:45:25 +09:00
|
|
|
|
|
|
|
|
static box Main {
|
|
|
|
|
main() {
|
2025-11-30 14:30:28 +09:00
|
|
|
print("2")
|
2025-09-27 08:45:25 +09:00
|
|
|
return 0
|
|
|
|
|
}
|
2025-11-02 08:23:43 +09:00
|
|
|
}
|