``` import attrs @attrs.define class DecoratorConverter: x: int = attrs.field() @x.converter def _to_int(self, val: str | float) -> int: return int(val) # XXX: fails # DecoratorConverter("foo") feature in attrs version 26.2.0 (unreleased)