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