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