Source file test/typeparam/issue47514c.dir/main.go

     1  package main
     2  
     3  import "./a"
     4  
     5  func Do[T any](doer a.Doer[T]) {
     6  	doer.Do()
     7  }
     8  
     9  func main() {
    10  }
    11  

View as plain text