Commit 0da89b39 authored by Olivier Duperray's avatar Olivier Duperray Committed by Russ Cox

test: Add the usual Copyright notice.

Fixes #2759.

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5570053
parent fce2416b
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package cgotest package cgotest
/* /*
......
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package cgotest package cgotest
/* /*
......
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main package main
func init() { func init() {
......
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package main package main
import ( import (
......
// $G $D/$F.go && $L $F.$A && ./$A.out // $G $D/$F.go && $L $F.$A && ./$A.out
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package main package main
func f() *int { func f() *int {
......
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package chanbug package chanbug
var C chan<- (chan int) var C chan<- (chan int)
var D chan<- func() var D chan<- func()
......
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package Bar package Bar
import _ "chanbug" import _ "chanbug"
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package p package p
type T struct { type T struct {
......
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package p package p
type T struct { type T struct {
......
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package main package main
import ( import (
......
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package main package main
import ( import (
......
// $G $D/$F.go && $L $F.$A && ./$A.out || echo BUG: bug260 failed // $G $D/$F.go && $L $F.$A && ./$A.out || echo BUG: bug260 failed
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
// Test that structures pack densely, according to the alignment of the largest field. // Test that structures pack densely, according to the alignment of the largest field.
package main package main
......
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package main package main
import ( import (
......
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package p package p
type T struct{ x int } type T struct{ x int }
......
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package one package one
func Foo() (n int64, _ *int) { func Foo() (n int64, _ *int) {
......
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
package two package two
import _ "./one" import _ "./one"
......
// $G $D/$F.dir/pkg.go && $G $D/$F.go || echo "Bug 382" // $G $D/$F.dir/pkg.go && $G $D/$F.go || echo "Bug 382"
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
// Issue 2529 // Issue 2529
package main package main
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment