mirror of
https://github.com/golang/go
synced 2024-11-22 08:04:39 -07:00
fiddling while rome burns: explain why tests are commented out
R=rsc DELTA=2 (2 added, 0 deleted, 0 changed) OCL=35874 CL=35880
This commit is contained in:
parent
4d4e885bd1
commit
36ccbbdfc6
@ -53,6 +53,7 @@ type S2 struct { i int }
|
|||||||
func (p *S2) Get() int { return p.i }
|
func (p *S2) Get() int { return p.i }
|
||||||
func (p *S2) Put(i int) { p.i = i }
|
func (p *S2) Put(i int) { p.i = i }
|
||||||
|
|
||||||
|
// Disallowed by restriction of values going to pointer receivers
|
||||||
// func f4() {
|
// func f4() {
|
||||||
// s := S2{1};
|
// s := S2{1};
|
||||||
// var i I1 = s;
|
// var i I1 = s;
|
||||||
@ -111,6 +112,7 @@ type S4 struct { i, j, k, l int64 }
|
|||||||
func (p *S4) Get() int64 { return p.l }
|
func (p *S4) Get() int64 { return p.l }
|
||||||
func (p *S4) Put(i int64) { p.l = i }
|
func (p *S4) Put(i int64) { p.l = i }
|
||||||
|
|
||||||
|
// Disallowed by restriction of values going to pointer receivers
|
||||||
// func f10() {
|
// func f10() {
|
||||||
// s := S4{1, 2, 3, 4};
|
// s := S4{1, 2, 3, 4};
|
||||||
// var i I2 = s;
|
// var i I2 = s;
|
||||||
|
Loading…
Reference in New Issue
Block a user