Hi,
I'm having trouble creating a relation between two fields on classes from different namespaces. I expect the following to create a relation from c -> d and d -> c but it does not.
@startuml
namespace a.b {
class C {
c
}
C::c o-- e.f.D::d
}
class e.f.D {
d
}
e.f.D::d o-- a.b.C::c
@enduml
Instead it looks like:
,-. ,-.
|C| |D|
|-| |-|
|c| |d|
`-' `-'
|
|
,----.
|D::d|
|----|
`----'
|
,----.
|C::c|
|----|
`----'
(namespaces missing from ASCII output)
Cheers