| Index: third_party/go/src/golang.org/x/mobile/bind/testdata/interfaces.go
|
| diff --git a/third_party/go/src/golang.org/x/mobile/bind/testdata/interfaces.go b/third_party/go/src/golang.org/x/mobile/bind/testdata/interfaces.go
|
| deleted file mode 100644
|
| index 0e7ad7a5fecbcd778ba61a40988e5f383a287322..0000000000000000000000000000000000000000
|
| --- a/third_party/go/src/golang.org/x/mobile/bind/testdata/interfaces.go
|
| +++ /dev/null
|
| @@ -1,21 +0,0 @@
|
| -// Copyright 2014 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 interfaces
|
| -
|
| -type I interface {
|
| - Rand() int32
|
| -}
|
| -
|
| -func Add3(r I) int32 {
|
| - return r.Rand() + r.Rand() + r.Rand()
|
| -}
|
| -
|
| -// chosen by fair dice roll.
|
| -// guaranteed to be random.
|
| -type seven struct{}
|
| -
|
| -func (seven) Rand() int32 { return 7 }
|
| -
|
| -func Seven() I { return seven{} }
|
|
|