Side by Side Diff: test/fixedbugs/bug382.go
Issue 5570053 :
code review 5570053: test: Add the usual Copyright notice. (Closed)
Patch Set: diff -r f10dfb8fa0eb https://go.googlecode.com/hg/
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
misc/cgo/test/align.go
misc/cgo/test/callback.go
src/cmd/gofix/netdial_test.go
src/cmd/gofix/reflect_test.go
test/chan/select4.go
test/fixedbugs/bug222.dir/chanbug.go
test/fixedbugs/bug222.dir/chanbug2.go
test/fixedbugs/bug248.dir/bug0.go
test/fixedbugs/bug248.dir/bug1.go
test/fixedbugs/bug248.dir/bug2.go
test/fixedbugs/bug248.dir/bug3.go
test/fixedbugs/bug260.go
test/fixedbugs/bug367.dir/main.go
test/fixedbugs/bug367.dir/p.go
test/fixedbugs/bug377.dir/one.go
test/fixedbugs/bug377.dir/two.go
test/fixedbugs/bug382.go
OLD NEW
1 // $G $D/$F.dir/pkg.go && $G $D/$F.go || echo "Bug 382" 1 // $G $D/$F.dir/pkg.go && $G $D/$F.go || echo "Bug 382"
2 2
3 // Copyright 2011 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file
6
3 // Issue 2529 7 // Issue 2529
4 8
5 package main 9 package main
6 import "./pkg" 10 import "./pkg"
7 11
8 var x = pkg.E 12 var x = pkg.E
9 13
10 var fo = struct {F pkg.T}{F: x} 14 var fo = struct {F pkg.T}{F: x}
OLD NEW