summaryrefslogtreecommitdiff
path: root/test/interface/private1.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/interface/private1.go')
-rw-r--r--test/interface/private1.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/interface/private1.go b/test/interface/private1.go
deleted file mode 100644
index 3173fbef4..000000000
--- a/test/interface/private1.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// true # used by private.go
-
-// 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
-
-type Exported interface {
- private()
-}
-
-type Implementation struct{}
-
-func (p *Implementation) private() {}
-
-var X = new(Implementation)
-