| 23 | """Test that StructMeta can be used directly as a metaclass.""" |
| 24 | |
| 25 | class CustomStruct(metaclass=StructMeta): |
| 26 | x: int |
| 27 | y: str |
| 28 | |
| 29 | # Verify the struct works as expected |
| 30 | instance = CustomStruct(x=1, y="test") |
no outgoing calls
searching dependent graphs…