allow_mixing not working for rectangle inside rectangle.

0 votes
asked Sep 18, 2017 in Bug by anonymous

This example works for allow_mixing.

http://www.plantuml.com/plantuml/png/Iyp9oI-FpysioCnBvqhEIImkLaZBppUivj9MoCmhKGX9pItWgkKgIaqkISnBpqa5IHfnWGW5NJkmIYiha1e0

@startuml
allow_mixing
class foo1{
+ int Temp
}
rectangle foo2
foo2 -> foo1::Temp
@enduml

The below one is not working for allow_mixing with Syntax Error

http://www.plantuml.com/plantuml/png/Iyp9oI-FpysioCnBvqhEIImkLaZBppUivj9MoCmhKGX9pItWgkKgIaqkISnBpqbLK0BA6YafLAC96Ii1LO6a57Jjm0POMO6q0W00

@startuml
allow_mixing
class foo1{
+ int Temp
}
rectangle "foo2" {
rectangle "foo3"
}
foo2 -> foo1::Temp
@enduml

1 Answer

0 votes
answered Sep 19, 2017 by plantuml (295,000 points)
Hi,

Thanks for the report.

This is fixed in last beta https://www.dropbox.com/s/koo42q3d9gxw288/plantuml.jar?dl=0

Regards,
commented Sep 25, 2017 by anonymous
Perfect this Beta version is working with rectangles now.
Can you please make it to the standard release.
...