Home | History | Annotate | Download | only in test23
      1 package test23
      2 
      3 // Check that vendor/v3 is used but vendor/v2 is NOT used (sub/vendor/v2 wins).
      4 
      5 import (
      6 	"v2"
      7 	"v3"
      8 )
      9 
     10 const x = v3.ComplexNestVendorV3
     11 const y = v2.ComplexNestSubVendorV2
     12