This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
Consider the following interface: interface Foo1 { maplike<long, long>; }; interface Foo2 { void entries(); }; interface Foo3 : Foo2 { }; Foo3 implements Foo1; Currently, this interface passes. However, if the maplike were directly on Foo3, it would fail. The spec should probably make sure this fails, too.