(self)
| 2851 | a = Unicode("hard default") |
| 2852 | |
| 2853 | def _a_default(self): |
| 2854 | return "default method" |
| 2855 | |
| 2856 | C._a_default = lambda self: "overridden" # type:ignore |
| 2857 | c = C() |
nothing calls this directly
no outgoing calls
no test coverage detected