| 116 | def test_unknown_fields(): |
| 117 | @dataclass |
| 118 | class Newer(betterproto.Message): |
| 119 | foo: bool = betterproto.bool_field(1) |
| 120 | bar: int = betterproto.int32_field(2) |
| 121 | baz: str = betterproto.string_field(3) |
| 122 | |
| 123 | @dataclass |
| 124 | class Older(betterproto.Message): |
no outgoing calls