From 43a123c1ae6613b3efeed291fa552ecd909d3acf Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 16 Apr 2024 21:23:18 +0200 Subject: Adding upstream version 1.20.14. Signed-off-by: Daniel Baumann --- test/typeparam/issue46461b.dir/a.go | 7 +++++++ test/typeparam/issue46461b.dir/b.go | 13 +++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 test/typeparam/issue46461b.dir/a.go create mode 100644 test/typeparam/issue46461b.dir/b.go (limited to 'test/typeparam/issue46461b.dir') diff --git a/test/typeparam/issue46461b.dir/a.go b/test/typeparam/issue46461b.dir/a.go new file mode 100644 index 0000000..fcb4142 --- /dev/null +++ b/test/typeparam/issue46461b.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2021 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 a + +type T[U interface{ M() int }] int diff --git a/test/typeparam/issue46461b.dir/b.go b/test/typeparam/issue46461b.dir/b.go new file mode 100644 index 0000000..a458325 --- /dev/null +++ b/test/typeparam/issue46461b.dir/b.go @@ -0,0 +1,13 @@ +// Copyright 2021 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 b + +import "./a" + +type X int + +func (X) M() int { return 0 } + +type _ a.T[X] -- cgit v1.2.3