LEFT | RIGHT |
(no file at all) | |
1 // $G $D/method4a.go && $G $D/$F.go && $L $F.$A && ./$A.out | |
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 2012 The Go Authors. All rights reserved. | 1 // Copyright 2012 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 method expressions with arguments. | 5 // Test method expressions with arguments. |
11 | 6 |
12 package main | 7 package main |
13 | 8 |
14 import "./method4a" | 9 import "./method4a" |
15 | 10 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 eq(g3(mt1, a, 38), 48) | 95 eq(g3(mt1, a, 38), 48) |
101 eq(g3(mt2, a, 39), 49) | 96 eq(g3(mt2, a, 39), 49) |
102 | 97 |
103 eq(method4a.I2.Sum(mt1, a, 40), 50) | 98 eq(method4a.I2.Sum(mt1, a, 40), 50) |
104 eq(method4a.I2.Sum(mt2, a, 41), 51) | 99 eq(method4a.I2.Sum(mt2, a, 41), 51) |
105 | 100 |
106 g4 := method4a.I2.Sum | 101 g4 := method4a.I2.Sum |
107 eq(g4(mt1, a, 42), 52) | 102 eq(g4(mt1, a, 42), 52) |
108 eq(g4(mt2, a, 43), 53) | 103 eq(g4(mt2, a, 43), 53) |
109 } | 104 } |
LEFT | RIGHT |