Source file src/go/internal/gccgoimporter/testdata/issue30628.go

     1  package issue30628
     2  
     3  import (
     4  	"os"
     5  	"sync"
     6  )
     7  
     8  const numR = int32(os.O_TRUNC + 5)
     9  
    10  type Apple struct {
    11  	hey sync.RWMutex
    12  	x   int
    13  	RQ  [numR]struct {
    14  		Count    uintptr
    15  		NumBytes uintptr
    16  		Last     uintptr
    17  	}
    18  }
    19  

View as plain text