blob: f2affeea6f83cedb8ce585f8f07a00de9f3d57af [file] [log] [blame]
// compile
// Copyright 2020 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
import "net/url"
type S[T any] struct {
f T
}
func F() S[url.Error] {
return S[url.Error]{}
}