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