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

     1  // Copyright 2018 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package a
     6  
     7  type internal struct {
     8  	f1 string
     9  	f2 float64
    10  }
    11  
    12  type S struct {
    13  	F struct {
    14  		I internal
    15  	}
    16  }
    17  

View as plain text