| 308 | |
| 309 | # Use the second level custom metaclass to create a struct class |
| 310 | class DerivedStruct(metaclass=DerivedMeta): |
| 311 | a: int |
| 312 | b: str |
| 313 | |
| 314 | # Create an instance |
| 315 | obj = DerivedStruct(a=42, b="derived") |
no outgoing calls
searching dependent graphs…