Source file test/fixedbugs/issue43551.dir/a.go

     1  package a
     2  
     3  type S struct {
     4  	a Key
     5  }
     6  
     7  func (s S) A() Key {
     8  	return s.a
     9  }
    10  
    11  type Key struct {
    12  	key int64
    13  }
    14  

View as plain text