Is it expected that a sealed interface can be impl...
# compiler
n
Is it expected that a sealed interface can be implemented from any package (and any module I suspect) by using delegation? E.g.
Bar : Foo by FooImpl()
. Here Bar is a Foo without being a FooImpl, so it feels like it is a new direct implementation.
d
Can you please provide a full reproducer?
n
No 😄 I was wrong, sorry. I realized it when trying to simplify my non trivial setup