aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/doc/testdata/pkg.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/doc/testdata/pkg.go')
-rw-r--r--src/cmd/doc/testdata/pkg.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/cmd/doc/testdata/pkg.go b/src/cmd/doc/testdata/pkg.go
index 5ece832565..a693c74918 100644
--- a/src/cmd/doc/testdata/pkg.go
+++ b/src/cmd/doc/testdata/pkg.go
@@ -238,3 +238,15 @@ type ExportedFormattedType struct {
// Text after pre-formatted block.
ExportedField int
}
+
+type SimpleConstraint interface {
+ ~int | ~float64
+}
+
+type TildeConstraint interface {
+ ~int
+}
+
+type StructConstraint interface {
+ struct { F int }
+}