LEFT | RIGHT |
(no file at all) | |
1 // $G $D/import2.go && $G $D/$F.go | |
2 | |
3 // NOTE: This test is not run by 'run.go' and so not run by all.bash. | |
4 // To run this test you must use the ./run shell script. | |
5 | |
6 // Copyright 2010 The Go Authors. All rights reserved. | 1 // Copyright 2010 The Go Authors. All rights reserved. |
7 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
8 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
9 | 4 |
10 // Test that all the types from import2.go made it | 5 // Test that all the types from import2.go made it |
11 // intact and with the same meaning, by assigning to or using them. | 6 // intact and with the same meaning, by assigning to or using them. |
12 | 7 |
13 package main | 8 package main |
14 | 9 |
15 import "./import2" | 10 import "./import2" |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 | 43 |
49 p.R8 = (<- chan <- chan chan int)(nil) | 44 p.R8 = (<- chan <- chan chan int)(nil) |
50 p.R9 = (<- chan chan <- chan int)(nil) | 45 p.R9 = (<- chan chan <- chan int)(nil) |
51 p.R10 = (chan <- <- chan chan int)(nil) | 46 p.R10 = (chan <- <- chan chan int)(nil) |
52 p.R11 = (chan <- chan <- chan int)(nil) | 47 p.R11 = (chan <- chan <- chan int)(nil) |
53 p.R12 = (chan chan <- <- chan int)(nil) | 48 p.R12 = (chan chan <- <- chan int)(nil) |
54 p.R13 = (chan chan <- chan <- int)(nil) | 49 p.R13 = (chan chan <- chan <- int)(nil) |
55 | 50 |
56 } | 51 } |
57 | 52 |
LEFT | RIGHT |