spec: record why the try rule cannot be enforced yet

SPEC.md allows `try` only inside a function returning an error union, but
check.c only tests it in the FE_N_EXPR_STMT case, so `var x = try e;` and
`x = try e;` walk straight past. m5/owned.fe and m5/runtime.fe both depend on
that gap.

Moving the check onto the try expression is a four-line change and it is
correct, but it cannot land yet. runtime.fe's `run` allocates and returns a
value, so closing the hole forces it to return an error union -- and master
rejects `return <value>;` in `-> !i32` ("return type mismatch") as well as a
bare `return;` in `-> !void` ("void expression returned from value function").
Both need contextual success construction, which is M7 work. `catch` and
`@trap()`, the two spellings SPEC offers as alternatives, are also M7-only, so
there is no way to express `run` legally on master today. All three paths were
tried in DOSBox-X, not assumed.

Fix owned.fe now, since `main() -> !void` is legal today and matches
m4/try-fpr.fe, and leave the checker alone until M7 lands with the rest.

Verified: 155 passed.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BScg8CF1sAAM2zVHAu5zvW
This commit is contained in:
2026-08-16 23:23:47 +09:00
co-authored by Claude Opus 5
parent 86bff9a06d
commit 0a434d8a9a
2 changed files with 17 additions and 1 deletions
+16
View File
@@ -557,3 +557,19 @@ M6~M9 구현 전에 함수-local 소유권 분석, optional/error 의미, 계층
- 근거: collision-free backend linkage와 M12 fixpoint를 동시에 보장한다. - 근거: collision-free backend linkage와 M12 fixpoint를 동시에 보장한다.
- 구현 영향: 정확한 escaping 문자는 구현 세부지만 deterministic separator encoding과 - 구현 영향: 정확한 escaping 문자는 구현 세부지만 deterministic separator encoding과
collision 검사가 필요하며 absolute path/address를 symbol에 포함할 수 없다. collision 검사가 필요하며 absolute path/address를 symbol에 포함할 수 없다.
### `try` enforcement is blocked on M7 contextual construction
- 문제: `SPEC.md``try`를 에러 유니온 반환 함수 안에서만 허용하는데, `check.c`의 검사가
`FE_N_EXPR_STMT`에만 걸려 있어 `var x = try e;``x = try e;`를 통과시킨다.
`fec/tests/m5/runtime.fe``run``owned.fe``main`이 이 구멍에 의존하고 있었다.
- 결정: 구멍은 M7과 함께 닫는다. M7 이전 master에서는 닫을 수 없다.
- 근거: 검사를 `try` 표현식으로 옮기면 `run`이 에러 유니온을 반환해야 하는데, master는
`-> !i32`에서 `return <value>;`도, `-> !void`에서 명시적 `return;`도 거부한다
("return type mismatch" / "void expression returned from value function"). 둘 다
contextual success construction이 필요하고 그것은 M7 작업이다. `catch``@trap`
master에는 없어서 우회로가 없다. 실측으로 세 경로를 모두 확인했다.
- 구현 영향: M7 병합 시 `check.c`의 검사를 `check_expr``try` 분기로 옮기고
`FE_N_EXPR_STMT`의 중복 검사를 제거한다. `runtime.fe``run`은 그때 에러 유니온
반환으로 바꾸고 `runtime.c``extern long fe_m5_runtime_run(long)`을 함께 고친다.
`owned.fe``main`은 M7 없이도 합법인 `-> !void`로 먼저 고쳐 두었다.
+1 -1
View File
@@ -1,6 +1,6 @@
unit m5_owned; unit m5_owned;
fn main() -> void { fn main() -> !void {
var p: ^i32 = try mem.create(0); var p: ^i32 = try mem.create(0);
p = try mem.create(0); p = try mem.create(0);
p.^ = 7; p.^ = 7;