Hello,
Is it possible to use the extends (resp. implements) keyword to specify multiple inheritance (resp. implementation)?
I tried the following syntax without success:
class A extends B, C {
}
A workaround is to use explicit links:
B <|-- A
C <|-- A
but this reduces readability.
Thanks,
Fred