blob: 4eb8730f279a8ff790ad49a59ca3f946deaa0b77 [file] [log] [blame]
// +build OMIT
package main
// List represents a singly-linked list that holds
// values of any type.
type List[T any] struct {
next *List[T]
val T
}
func main() {
}