Home | History | Annotate | Download | only in reproducible
      1 // Copyright 2017 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 p
      6 
      7 var (
      8 	i0 uint8
      9 	b0 byte
     10 
     11 	i1 *uint8
     12 	b1 *byte
     13 
     14 	i2 **uint8
     15 	b2 **byte
     16 
     17 	i3 ***uint8
     18 	b3 ***byte
     19 
     20 	i4 ****uint8
     21 	b4 ****byte
     22 
     23 	i5 *****uint8
     24 	b5 *****byte
     25 
     26 	i6 ******uint8
     27 	b6 ******byte
     28 
     29 	i7 *******uint8
     30 	b7 *******byte
     31 
     32 	i8 ********uint8
     33 	b8 ********byte
     34 )
     35