// Test WIT covering two components, A and B, referencing each other. package test:b; interface api-b { enum typ-b { x, y, z } func-b: func() -> typ-b; } world b { //!! import test:a-stub/stub-a; export api-b; }