blob: 4703ec035636843744f386edb46146366f42b01e [file] [log] [blame]
Colin Cross7bb052a2015-02-03 12:59:37 -08001// Copyright 2013 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
5package main
6
7import (
8 "./p0"
9 "./p1"
10)
11
12var (
13 _ p0.T0 = p0.S0{}
14 _ p0.T0 = p1.S1{}
15 _ p0.T0 = p1.NewT0()
16 _ p0.T0 = p1.NewT1() // same as p1.S1{}
17)
18
19func main() {}