Problem
Compiler.php asserts no extends/implements (#101). Traits and abstract methods are unsupported.
Goal
Single inheritance + interface method checks + horizontal trait composition (subset).
Tasks
Acceptance
trait T { public function f(): int { return 1; } }
class C { use T; }
(new C)->f() === 1
Problem
Compiler.phpasserts noextends/implements(#101). Traits andabstractmethods are unsupported.Goal
Single inheritance + interface method checks + horizontal trait composition (subset).
Tasks
extends/implementsmetadataAcceptance