| 812 | """ |
| 813 | |
| 814 | class C: |
| 815 | __attrs_attrs__ = [ |
| 816 | simple_attr(name="a", default=2), |
| 817 | simple_attr(name="b", default="hallo"), |
| 818 | simple_attr(name="c", default=None), |
| 819 | ] |
| 820 | |
| 821 | C = _add_init(C, False) |
| 822 | i = C() |
nothing calls this directly
no test coverage detected