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, 18 insertions, 0 deletions
diff --git a/test/interface/private1.go b/test/interface/private1.go
new file mode 100644
index 000000000..3173fbef4
--- /dev/null
+++ b/test/interface/private1.go
@@ -0,0 +1,18 @@
+// 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)
+