2022-07-04 15:31:22 +00:00
|
|
|
import TestTypes
|
|
|
|
|
|
|
|
Person {
|
2023-01-25 11:26:44 +00:00
|
|
|
id: self
|
2022-07-04 15:31:22 +00:00
|
|
|
property Person other: Person { id: oo }
|
|
|
|
barzles: oo.barzles
|
2023-01-23 13:44:32 +00:00
|
|
|
cousins: oo.cousins
|
2023-01-23 13:29:27 +00:00
|
|
|
property int l: oo.barzles.length
|
2023-01-23 13:44:32 +00:00
|
|
|
property int m: oo.cousins.length
|
2023-01-23 14:42:07 +00:00
|
|
|
|
|
|
|
property list<Person> others: cousins
|
2023-01-25 11:26:44 +00:00
|
|
|
|
|
|
|
property Person mom: Person {
|
|
|
|
id: mm
|
|
|
|
cousins: self.others
|
|
|
|
}
|
|
|
|
property list<Person> momsCousins: mm.cousins
|
|
|
|
|
|
|
|
property Person dad: Person {
|
|
|
|
id: dd
|
|
|
|
cousins: oo
|
|
|
|
}
|
|
|
|
property list<Person> dadsCousins: dd.cousins
|
2022-07-04 15:31:22 +00:00
|
|
|
}
|