| 30 | } |
| 31 | |
| 32 | type element[T any] struct { |
| 33 | next *element[T] |
| 34 | val T |
| 35 | } |
| 36 | |
| 37 | // We can define methods on generic types just like we |
| 38 | // do on regular types, but we have to keep the type |
nothing calls this directly
no outgoing calls
no test coverage detected