blob: 625df7577b738f0909740c9f913e71881bae7c93 [file] [log] [blame]
-- suggestedfix_typeparams_14_40 --
//go:build go1.18
// +build go1.18
package fillstruct
type emptyStructWithTypeParams[A any] struct{}
var _ = emptyStructWithTypeParams[int]{} // no suggested fix
type basicStructWithTypeParams[T any] struct {
foo T
}
var _ = basicStructWithTypeParams[int]{
foo: 0,
} //@suggestedfix("}", "refactor.rewrite", "Fill")
type twoArgStructWithTypeParams[F, B any] struct {
foo F
bar B
}
var _ = twoArgStructWithTypeParams[string, int]{} //@suggestedfix("}", "refactor.rewrite", "Fill")
var _ = twoArgStructWithTypeParams[int, string]{
bar: "bar",
} //@suggestedfix("}", "refactor.rewrite", "Fill")
type nestedStructWithTypeParams struct {
bar string
basic basicStructWithTypeParams[int]
}
var _ = nestedStructWithTypeParams{} //@suggestedfix("}", "refactor.rewrite", "Fill")
func _[T any]() {
type S struct{ t T }
_ = S{} //@suggestedfix("}", "refactor.rewrite", "Fill")
}
-- suggestedfix_typeparams_21_49 --
//go:build go1.18
// +build go1.18
package fillstruct
type emptyStructWithTypeParams[A any] struct{}
var _ = emptyStructWithTypeParams[int]{} // no suggested fix
type basicStructWithTypeParams[T any] struct {
foo T
}
var _ = basicStructWithTypeParams[int]{} //@suggestedfix("}", "refactor.rewrite", "Fill")
type twoArgStructWithTypeParams[F, B any] struct {
foo F
bar B
}
var _ = twoArgStructWithTypeParams[string, int]{
foo: "",
bar: 0,
} //@suggestedfix("}", "refactor.rewrite", "Fill")
var _ = twoArgStructWithTypeParams[int, string]{
bar: "bar",
} //@suggestedfix("}", "refactor.rewrite", "Fill")
type nestedStructWithTypeParams struct {
bar string
basic basicStructWithTypeParams[int]
}
var _ = nestedStructWithTypeParams{} //@suggestedfix("}", "refactor.rewrite", "Fill")
func _[T any]() {
type S struct{ t T }
_ = S{} //@suggestedfix("}", "refactor.rewrite", "Fill")
}
-- suggestedfix_typeparams_25_1 --
//go:build go1.18
// +build go1.18
package fillstruct
type emptyStructWithTypeParams[A any] struct{}
var _ = emptyStructWithTypeParams[int]{} // no suggested fix
type basicStructWithTypeParams[T any] struct {
foo T
}
var _ = basicStructWithTypeParams[int]{} //@suggestedfix("}", "refactor.rewrite", "Fill")
type twoArgStructWithTypeParams[F, B any] struct {
foo F
bar B
}
var _ = twoArgStructWithTypeParams[string, int]{} //@suggestedfix("}", "refactor.rewrite", "Fill")
var _ = twoArgStructWithTypeParams[int, string]{
foo: 0,
bar: "bar",
} //@suggestedfix("}", "refactor.rewrite", "Fill")
type nestedStructWithTypeParams struct {
bar string
basic basicStructWithTypeParams[int]
}
var _ = nestedStructWithTypeParams{} //@suggestedfix("}", "refactor.rewrite", "Fill")
func _[T any]() {
type S struct{ t T }
_ = S{} //@suggestedfix("}", "refactor.rewrite", "Fill")
}
-- suggestedfix_typeparams_32_36 --
//go:build go1.18
// +build go1.18
package fillstruct
type emptyStructWithTypeParams[A any] struct{}
var _ = emptyStructWithTypeParams[int]{} // no suggested fix
type basicStructWithTypeParams[T any] struct {
foo T
}
var _ = basicStructWithTypeParams[int]{} //@suggestedfix("}", "refactor.rewrite", "Fill")
type twoArgStructWithTypeParams[F, B any] struct {
foo F
bar B
}
var _ = twoArgStructWithTypeParams[string, int]{} //@suggestedfix("}", "refactor.rewrite", "Fill")
var _ = twoArgStructWithTypeParams[int, string]{
bar: "bar",
} //@suggestedfix("}", "refactor.rewrite", "Fill")
type nestedStructWithTypeParams struct {
bar string
basic basicStructWithTypeParams[int]
}
var _ = nestedStructWithTypeParams{
bar: "",
basic: basicStructWithTypeParams{},
} //@suggestedfix("}", "refactor.rewrite", "Fill")
func _[T any]() {
type S struct{ t T }
_ = S{} //@suggestedfix("}", "refactor.rewrite", "Fill")
}
-- suggestedfix_typeparams_36_8 --
//go:build go1.18
// +build go1.18
package fillstruct
type emptyStructWithTypeParams[A any] struct{}
var _ = emptyStructWithTypeParams[int]{} // no suggested fix
type basicStructWithTypeParams[T any] struct {
foo T
}
var _ = basicStructWithTypeParams[int]{} //@suggestedfix("}", "refactor.rewrite", "Fill")
type twoArgStructWithTypeParams[F, B any] struct {
foo F
bar B
}
var _ = twoArgStructWithTypeParams[string, int]{} //@suggestedfix("}", "refactor.rewrite", "Fill")
var _ = twoArgStructWithTypeParams[int, string]{
bar: "bar",
} //@suggestedfix("}", "refactor.rewrite", "Fill")
type nestedStructWithTypeParams struct {
bar string
basic basicStructWithTypeParams[int]
}
var _ = nestedStructWithTypeParams{} //@suggestedfix("}", "refactor.rewrite", "Fill")
func _[T any]() {
type S struct{ t T }
_ = S{
t: *new(T),
} //@suggestedfix("}", "refactor.rewrite", "Fill")
}